Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Update AppiumOptions.cs: Fix typos #704

Merged
merged 1 commit into from
Dec 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/Appium.Net/Appium/AppiumOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public AppiumOptions() : base()
public string DeviceName { get; set; }

/// <summary>
/// Gets or sets the Capability name used for the apllication setting.
/// Gets or sets the Capability name used for the application setting.
/// </summary>
public string App { get; set; }

Expand Down Expand Up @@ -84,11 +84,11 @@ public void AddAdditionalAppiumOption(string optionName, object optionValue)

public override void AddAdditionalOption(string optionName, object optionValue)
{
throw new NotImplementedException("Use the the AddAdditionalAppiumOption method for adding additional options");
throw new NotImplementedException("Use the AddAdditionalAppiumOption method for adding additional options");
}

/// <summary
/// Turn the capabilities into an desired capability
/// Turn the capabilities into a desired capability
/// </summary>
/// <returns>A desired capability</returns>
public override ICapabilities ToCapabilities()
Expand Down Expand Up @@ -149,4 +149,4 @@ public IDictionary<string, object> ToDictionary()
return (writeable.AsReadOnly() as ReadOnlyDesiredCapabilities).ToDictionary();
}
}
}
}