Skip to content

Commit

Permalink
fix typo in summary of down keys (#7946)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottsauber authored and p0deje committed Jan 21, 2020
1 parent 705362f commit e866f05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dotnet/src/webdriver/Keys.cs
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,12 @@ public static class Keys
public static readonly string ArrowRight = Convert.ToString(Convert.ToChar(0xE014, CultureInfo.InvariantCulture), CultureInfo.InvariantCulture); // alias

/// <summary>
/// Represents the Left arrow key.
/// Represents the down arrow key.
/// </summary>
public static readonly string Down = Convert.ToString(Convert.ToChar(0xE015, CultureInfo.InvariantCulture), CultureInfo.InvariantCulture);

/// <summary>
/// Represents the Left arrow key.
/// Represents the down arrow key.
/// </summary>
public static readonly string ArrowDown = Convert.ToString(Convert.ToChar(0xE015, CultureInfo.InvariantCulture), CultureInfo.InvariantCulture); // alias

Expand Down

0 comments on commit e866f05

Please sign in to comment.