Skip to content

Commit 87b37c0

Browse files
authored
Merge pull request #6286 from delftswa2018/feature-typo-fixes
Small typo fixes in readme.md files
2 parents 79bd263 + af7c1c9 commit 87b37c0

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

events/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ queue.dispatch();
113113

114114
// Events can also pass arguments to the underlying callback when both
115115
// initially constructed and posted.
116-
Event<void(int, int)> event(&queue, printf, "recieved %d and %d\n");
116+
Event<void(int, int)> event(&queue, printf, "received %d and %d\n");
117117

118118
// Events can be posted multiple times and enqueue gracefully until
119119
// the dispatch function is called.

features/FEATURE_BLE/targets/TARGET_CORDIO/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# BLE API Cordio Implementation
22

33
The BLE API Cordio implementation allows Cordio licensee to easily deliver a
4-
complete and up to date implementation of mbed BLE to their custommers using
4+
complete and up to date implementation of mbed BLE to their customers using
55
mbed OS.
66

7-
To deliver a BLE port, vendors simply have to provide an HCI driver taillored
7+
To deliver a BLE port, vendors simply have to provide an HCI driver tailored
88
for the BLE module present on the board they want to support.
99

1010
## Source Organization

features/FEATURE_BLE/targets/TARGET_NORDIC/TARGET_MCU_NRF51822/sdk/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The files are kept the same as much as possible to the Nordic SDK. Modifications
88

99

1010
## Porting new versions of Nordic SDK
11-
A list of files currently requierd by mbed is maintained in [script/required_files.txt](https://github.com/ARMmbed/nrf51-sdk/blob/master/script/required_files.txt). [A python script](https://github.com/ARMmbed/nrf51-sdk/blob/master/script/pick_nrf51_files.py) is written to help porting from nordic sdk releases. **required_files.txt** is parsed to find a list of filenames. The script searches for these filenames in the sdk folder, and copy then into the yotta module mirroring the folder structure in the sdk. **extraIncludes** is automatically added to module.json to allow direct inclusion of noridc headers with just the filename.
11+
A list of files currently required by mbed is maintained in [script/required_files.txt](https://github.com/ARMmbed/nrf51-sdk/blob/master/script/required_files.txt). [A python script](https://github.com/ARMmbed/nrf51-sdk/blob/master/script/pick_nrf51_files.py) is written to help porting from nordic sdk releases. **required_files.txt** is parsed to find a list of filenames. The script searches for these filenames in the sdk folder, and copy then into the yotta module mirroring the folder structure in the sdk. **extraIncludes** is automatically added to module.json to allow direct inclusion of noridc headers with just the filename.
1212

1313
### Script usage
1414
```

features/mbedtls/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This edition of mbed TLS has been adapted for mbed OS and imported from its stan
1010
Getting Help and Support
1111
------------------------
1212

13-
The [mbed TLS website](https://tls.mbed.org/) contains fulll documentation for the library, including function by function descriptions, knowledgebase articles, blogs and a support forum for questions to the community.
13+
The [mbed TLS website](https://tls.mbed.org/) contains full documentation for the library, including function by function descriptions, knowledgebase articles, blogs and a support forum for questions to the community.
1414

1515

1616
Contributing to the Project

features/nvstore/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ Each item is kept in an entry containing a header and data, where the header hol
3333
### Enabling NVStore and configuring it for your board
3434
NVStore is enabled by default for all devices with the internal flash driver (have "FLASH" in the device_has attribute).
3535
One can disable it by setting its "enabled" attribute to false.
36-
Unless specifically configured by the user, NVStore selects the last two flash sectors as its areas, with the mininum size of 4KBs,
36+
Unless specifically configured by the user, NVStore selects the last two flash sectors as its areas, with the minimum size of 4KBs,
3737
meaning that if the sectors are smaller, few continuous ones will be used for each area.
3838
The user can override this by setting the addresses and sizes of both areas in` mbed_lib.json` on a per board basis.
3939
In this case, all following four attributes need to be set:

0 commit comments

Comments
 (0)