Skip to content

Commit

Permalink
update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
luttje committed Jun 29, 2022
1 parent cdda97a commit e684fdf
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion BuildMarkdownDocs/Member.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public string GetParametersSignature()
return string.Empty;

return string.Join(", ", Parameters?
.Select(p => $"`{p.Type.Name}`"));
.Select(p => $"`{p.Type?.Name}`"));
}

internal static Member FromXml(XElement element)
Expand Down
4 changes: 2 additions & 2 deletions Docs/Api/Input/Keyboard.Simulate.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# `Keyboard.Simulate` (`Keys`, `PressState`)
# `Keyboard.Simulate` (`KeyboardKey`, `PressState`)


Simulate pressing or releasing (or both) keyboard keys.


## Parameters

* **key (`Keys`)**
* **key (`KeyboardKey`)**

Key to simulate

Expand Down
1 change: 1 addition & 0 deletions Docs/Api/Logic/Wait.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

Wait for the specified duration in milliseconds, then execute the callback

Note: There are issues with this function I have yet to fix. It may not work as expected sometimes!

## Parameters

Expand Down
2 changes: 1 addition & 1 deletion Docs/Index.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## Input

* [`GamePad.Simulate` (`GamePadControl`, `PressState`)](Api/Input/GamePad.Simulate.md)
* [`Keyboard.Simulate` (`Keys`, `PressState`)](Api/Input/Keyboard.Simulate.md)
* [`Keyboard.Simulate` (`KeyboardKey`, `PressState`)](Api/Input/Keyboard.Simulate.md)

## Logic

Expand Down

0 comments on commit e684fdf

Please sign in to comment.