Skip to content

Commit edc4320

Browse files
committed
tree-wide: fix typos in doc and comments
This should not change any generated binary
1 parent 4452f07 commit edc4320

File tree

61 files changed

+79
-79
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+79
-79
lines changed

CODING_CONVENTIONS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ Wrong:
257257
functionality.
258258
* Every function must be documented - including parameters and return value.
259259

260-
An examplary doxygen documentation in a header file can look like this.
260+
An exemplary doxygen documentation in a header file can look like this.
261261

262262
```
263263
/*

boards/airfy-beacon/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="3748", \
8282
# If you share your linux system with other users, or just don't like the
8383
# idea of write permission for everybody, you can replace MODE:="0666" with
8484
# OWNER:="yourusername" to create the device owned by you, or with
85-
# GROUP:="somegroupname" and mange access using standard unix groups.
85+
# GROUP:="somegroupname" and manage access using standard unix groups.
8686

8787
> sudo cp 49-stlinkv2.rules /etc/udev/rules.d/
8888
> sudo udevadm control --reload-rules

boards/frdm-k64f/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ See also the ARMmbed
5555
[instructions](https://developer.mbed.org/platforms/FRDM-K64F/#getting-started-
5656
with-mbed).
5757

58-
## Updating the Booloader
58+
## Updating the Bootloader
5959
A update of CMSIS-DAP firmware is necessary to using the board with OpenOCD.
6060
A good step by step guide is available
6161
[here](https://developer.mbed.org/handbook/Firmware-FRDM-K64F).

boards/iotlab-m3/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ b <breakpoint>
7676
c
7777
```
7878
For best debugging experience also change the `-Os` flag in
79-
`Makefile.inlcude`'s `CFLAGS` variable to `-O0`.
79+
`Makefile.include`'s `CFLAGS` variable to `-O0`.
8080

8181
## Details
8282
The M3 Open Node can reset, debug and program the STM32 on JTAG through the

boards/spark-core/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ SUBSYSTEMS=="usb", ATTRS{idVendor}=="1d50", ATTRS{idProduct}=="607f", \
5252
# If you share your linux system with other users, or just don't like the
5353
# idea of write permission for everybody, you can replace MODE:="0666" with
5454
# OWNER:="yourusername" to create the device owned by you, or with
55-
# GROUP:="somegroupname" and mange access using standard unix groups.
55+
# GROUP:="somegroupname" and manage access using standard unix groups.
5656

5757
sudo cp 50-openmoko.rules /etc/udev/rules.d/
5858
sudo udevadm control --reload-rules

core/include/mutex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,7 @@ void mutex_unlock_and_sleep(mutex_t *mutex);
392392
* @ref mutex_lock_cancelable. (You can reinitialize the same memory
393393
* to safely reuse it.)
394394
* @warning You ***MUST NOT*** call this function once the thread referred to by
395-
* @p mc re-uses the mutex object referred to by @p mc (not counting
395+
* @p mc reuses the mutex object referred to by @p mc (not counting
396396
* the call to @ref mutex_lock_cancelable @p mc was used in).
397397
* @note It is safe to call this function from IRQ context, e.g. from a timer
398398
* interrupt.

core/msg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ static int _msg_send_oneway(msg_t *m, kernel_pid_t target_pid)
216216

217217
sched_set_status(target, STATUS_PENDING);
218218

219-
/* Interrupts are disabled here, we can set / re-use
219+
/* Interrupts are disabled here, we can set / reuse
220220
sched_context_switch_request. */
221221
sched_context_switch_request = 1;
222222

@@ -280,7 +280,7 @@ int msg_send_receive(msg_t *m, msg_t *reply, kernel_pid_t target_pid)
280280
sched_set_status(me, STATUS_REPLY_BLOCKED);
281281
me->wait_data = reply;
282282

283-
/* we re-use (abuse) reply for sending, because wait_data might be
283+
/* we reuse (abuse) reply for sending, because wait_data might be
284284
* overwritten if the target is not in RECEIVE_BLOCKED */
285285
*reply = *m;
286286
/* msg_send blocks until reply received */

cpu/esp8266/periph/adc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ int adc_init(adc_t line)
3737
{
3838
CHECK_PARAM_RET (line < ADC_NUMOF, -1)
3939

40-
/* no special inialization needed */
40+
/* no special initialization needed */
4141
return 0;
4242
}
4343

cpu/esp_common/esp-wifi/doc.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ following configuration parameters have to be defined:
8888
Parameter | Default | Description
8989
:------------------|:----------|:------------
9090
WIFI_SSID | "RIOT_AP" | SSID of the AP to be used.
91-
WIFI_EAP_ID | none | Optional anonymous identity used in phase 1 (outer) EAP authentication. If it is not defined, the user name defined for phase 2 (inner) EAP authentication is used as idendity in phase 1.
91+
WIFI_EAP_ID | none | Optional anonymous identity used in phase 1 (outer) EAP authentication. If it is not defined, the user name defined for phase 2 (inner) EAP authentication is used as identity in phase 1.
9292
WIFI_EAP_USER | none | User name used in phase 2 (inner) EAP authentication.
9393
WIFI_EAP_PASS | none | Password used in phase 2 (inner) EAP authentication.
9494
ESP_WIFI_STACKSIZE | #THREAD_STACKSIZE_DEFAULT | Stack size used for the WiFi netdev driver thread.

cpu/nrf52/radio/nrf802154/nrf802154_radio.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -566,7 +566,7 @@ void isr_radio(void)
566566
case STATE_ACK:
567567
_state = STATE_IDLE;
568568

569-
/* We disable the radio to avoid unwanted emmissions (see ERRATA
569+
/* We disable the radio to avoid unwanted emissions (see ERRATA
570570
* ID 204, "Switching between TX and RX causes unwanted emissions")
571571
*/
572572
_disable();

0 commit comments

Comments
 (0)