Skip to content

Commit 9a3a520

Browse files
author
Amanda Butler
authored
Copy edit platform.md
Make minor grammar changes.
1 parent a7d4e7a commit 9a3a520

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/reference/api/platform/platform.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Platform overview
22

3-
The role of the platform modules is to provide general purpose MCU management infrastructure, a few common data structures, and a consistent user experience on top of different standard libraries and toolchains. This page contains reference material about these subjects.
3+
The role of the platform modules is to provide general purpose MCU management infrastructure, a few common data structures and a consistent user experience on top of different standard libraries and toolchains. This page contains reference material about these subjects.
44

55
### General MCU Management Infrastructure
66

@@ -25,7 +25,7 @@ Mbed OS provides the CircularBuffer and ATCmdParser as these are commonly used u
2525

2626
Mbed OS includes a few convenience classes that are tailored for embedded systems development. These are the `Callback`, `Error` and `NonCopyable` classes.
2727

28-
- [Callback](/docs/development/reference/callback.html): An API that executes the user’s code in its own context. Many other Mbed OS APIs build on the Callback API by taking a callback to execute.
28+
- [Callback](/docs/development/reference/callback.html): An API that executes the user’s code in its own context. Many other Mbed OS APIs build on the Callback API by taking a callback to execute.
2929
- [Time](/docs/development/reference/time.html): A group of functions in the standard library of the C programming language implementing date and time manipulation operations.
3030
- [Error](/docs/development/reference/error.html): A functions that generates a fatal runtime error.
3131
- [NonCopyable](/docs/development/reference/noncopyable.html): An API that tags a class as not supporting copy operations. It creates a compile-time error if you copy the object.
@@ -90,7 +90,7 @@ public:
9090

9191
This API is sufficient for simple applications, but falls apart when there are multiple ADC modules available. This problem becomes especially noticeable when a user tries to reuse the same procedure for multiple callbacks.
9292

93-
For example, consider applying a low-pass filter to two different ADC modules
93+
For example, consider applying a low-pass filter to two different ADC modules:
9494

9595
``` c++
9696
// Here is a small running-average low-pass filter.

0 commit comments

Comments
 (0)