Skip to content

Commit a9f7b80

Browse files
authored
Fix some documentation typos (project-chip#13067)
1 parent 161cd14 commit a9f7b80

7 files changed

+10
-10
lines changed

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@ to help achieve our interoperability architectural goal. Matter will initially
8989
support Wi-Fi and Thread for core, operational communications and Bluetooth Low
9090
Energy (BLE) to simplify device commissioning and setup.
9191

92-
The Application Layer can be further broken down seven main components:
92+
The Application Layer can be further broken down into seven main components:
9393

9494
![Matter Stack Architecture](docs/images/CHIP_Arch_Pyramid.png)
9595

9696
1. **Application:** High order business logic of a device. For example, an
9797
application that is focused on lighting might contain logic to handle turning
98-
on/off the bulb as well its color characteristics.
98+
on/off the bulb as well as its color characteristics.
9999

100100
2. **Data Model:** Data primitives that help describe the various
101101
functionalities of the devices. The Application operates on these data
@@ -116,7 +116,7 @@ The Application Layer can be further broken down seven main components:
116116

117117
6. **Message Framing & Routing:** With an interaction encrypted and signed, the
118118
Message Layer constructs the payload format with required and optional header
119-
fields; which specify properties of the message as well some routing
119+
fields; which specify properties of the message as well as some routing
120120
information.
121121

122122
7. **IP Framing & Transport Management:** After the final payload has been

docs/PROJECT_FLOW.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ repository.
99
Matter uses issues as simple problem descriptions or feature requests. In
1010
general, all work contributed to the repository in the form of pull requests
1111
(PR) should be under the auspices of some open issue. This may seem onerous and
12-
in some cases duplicative, so consider these guidelines when deciding whether to
12+
in some cases duplicative, so consider these guidelines when deciding whether
1313
you can get away with not creating an issue:
1414

1515
- Trivial fixes: issues can function as TODO lists, simple reminders that

docs/QUICK_START.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
## Demo Overview
44

5-
The Matter reference implementation contains support for a number examples and
6-
platforms.
5+
The Matter reference implementation contains support for a number of examples
6+
and platforms.
77

88
## Wi-Fi Nodes
99

docs/STYLE_GUIDE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ $ git clone https://github.com/project-chip/connectedhomeip.git
7575

7676
### Terminal prompts
7777

78-
If you need use a full terminal prompt with username and hostname, use the
78+
If you need to use a full terminal prompt with username and hostname, use the
7979
format of `root@{hostname}{special-characters}#`.
8080

8181
For example, when logged into a Docker container, you might have a prompt like

docs/guides/BUILDING.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ all of the target instances. For example:
280280
gn desc out/unified '//src/controller(//build/toolchain/host:linux_x64_clang)'
281281
```
282282

283-
Note: Some platforms that can be build as part of the unified build require
283+
Note: Some platforms that can be built as part of the unified build require
284284
downloading additional SDKs. To add these to the build, the location of the SDK
285285
installation must be provided as a build argument. For example, to add the
286286
Simplelink cc13x2_26x2 examples to the unified build, install the

docs/style/DOXYGEN.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Objective C{plusplus}. Adapt as appropriate for Perl, Python and Shell.
165165
* interpreted and parsed. If 0 or 16, the string may
166166
* be hexadecimal and prefixed with "0x". Otherwise, a 0
167167
* is implied as 10 unless a leading 0 is encountered in
168-
* which 8 is implied.
168+
* which case 8 is implied.
169169
*
170170
* @retval 0 on success.
171171
* @retval #EINVAL if the given base contains an unsupported value or if no

docs/style/coding/CODING_STYLE_GUIDE.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ Heap-based resource allocation should be avoided.
273273
As emphasized throughout this document, the software produced by Project
274274
CHIP is consumed both inside and outside Project CHIP, across a variety
275275
of platforms. The capabilities of these platforms are broad, spanning
276-
soft real-time, deeply-embedded systems based on based on RTOSes that
276+
soft real-time, deeply-embedded systems based on RTOSes that
277277
may cover life safety and/or physical security applications to richer,
278278
softly-embedded systems based on non-RTOS platforms such as Darwin or
279279
Linux. While the latter are apt to have fully-functional heaps, the

0 commit comments

Comments
 (0)