Skip to content

Typo fixes #2553

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

Merged
merged 4 commits into from
Jun 11, 2022
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
4 changes: 2 additions & 2 deletions documentation/asciidoc/accessories/build-hat/net-brick.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ but you need to remember to dispose of the `brick` at the end of your code.
brick.Dispose();
----

WARNING: If you do not call `brick.Dispose()` you program will not terminate.
WARNING: If you do not call `brick.Dispose()` your program will not terminate.

If you want to avoid calling `brick.Dispose` at the end, then create your brick with the `using` statement:

Expand Down Expand Up @@ -104,7 +104,7 @@ void MotorPropertyEvent(object? sender, PropertyChangedEventArgs e)

==== Waiting for initialization

The brick can take long before it initializes. A wait for sensor to be connected has been implemented,
The brick can take a long time before it initializes. A wait for a sensor to be connected has been implemented.

[csharp]
----
Expand Down