Skip to content

Commit 3314c36

Browse files
dbkinderAnas Nashif
authored andcommitted
doc: misspellings in public API doxygen comments
occasional spelling-check pass found some misspellings Signed-off-by: David B. Kinder <[email protected]>
1 parent 4b78225 commit 3314c36

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

include/crc16.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ u16_t crc16(const u8_t *src, size_t len, u16_t polynomial,
4848
* See ITU-T Recommendation V.41 (November 1988). Uses 0x1021 as the
4949
* polynomial, reflects the input, and reflects the output.
5050
*
51-
* To calculate the CRC across non-contigious blocks use the return
51+
* To calculate the CRC across non-contiguous blocks use the return
5252
* value from block N-1 as the seed for block N.
5353
*
5454
* For CRC-16/CCITT, use 0 as the initial seed. Other checksums in
@@ -73,7 +73,7 @@ u16_t crc16_ccitt(u16_t seed, const u8_t *src, size_t len);
7373
* The MSB first version of ITU-T Recommendation V.41 (November 1988).
7474
* Uses 0x1021 as the polynomial with no reflection.
7575
*
76-
* To calculate the CRC across non-contigious blocks use the return
76+
* To calculate the CRC across non-contiguous blocks use the return
7777
* value from block N-1 as the seed for block N.
7878
*
7979
* For CRC-16/XMODEM, use 0 as the initial seed. Other checksums in

include/fs.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ int fs_unlink(const char *path);
220220
* must contain a full filename path, rather than just the new parent
221221
* directory. If an object already exists at the specified destination path,
222222
* this function causes it to be unlinked prior to the rename (i.e., the
223-
* estination gets clobbered).
223+
* destination gets clobbered).
224224
*
225225
* @param from The source path.
226226
* @param to The destination path.

include/kernel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4315,7 +4315,7 @@ __syscall void k_str_out(char *c, size_t n);
43154315
* startup is running on CPU zero, other processors are numbered
43164316
* sequentially. On return from this function, the CPU is known to
43174317
* have begun operating and will enter the provided function. Its
4318-
* interrupts will be initialied but disabled such that irq_unlock()
4318+
* interrupts will be initialized but disabled such that irq_unlock()
43194319
* with the provided key will work to enable them.
43204320
*
43214321
* Normally, in SMP mode this function will be called by the kernel

include/net/buf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -448,8 +448,8 @@ static inline void net_buf_simple_restore(struct net_buf_simple *buf,
448448
/** Flag indicating that the buffer's associated data pointer, points to
449449
* externally allocated memory. Therefore once ref goes down to zero, the
450450
* pointed data will not need to be deallocated. This never needs to be
451-
* explicitely set or unet by the net_buf API user. Such net_buf is
452-
* exclusively instanciated via net_buf_alloc_with_data() function.
451+
* explicitly set or unet by the net_buf API user. Such net_buf is
452+
* exclusively instantiated via net_buf_alloc_with_data() function.
453453
* Reference count mechanism however will behave the same way, and ref
454454
* count going to 0 will free the net_buf but no the data pointer in it.
455455
*/

include/stats.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ int stats_group_walk(stats_group_walk_fn *walk_cb, void *arg);
318318
/**
319319
* @brief Retrieves the next registered statistics group.
320320
*
321-
* @param cur The group whose sucessor is being retrieved, or
321+
* @param cur The group whose successor is being retrieved, or
322322
* NULL to retrieve the first group.
323323
*
324324
* @return Pointer to the retrieved group on success;

0 commit comments

Comments
 (0)