Skip to content

Commit d19fef4

Browse files
committed
fix(doc): Fix minor spelling mistakes
Signed-off-by: Ollrogge <nils-ollrogge@outlook.de>
1 parent e6fee86 commit d19fef4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/ariel-os-coap/src/udp_nal/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! UDP sockets usable through [`embedded_nal_async`]
22
//!
33
//! The full [`embedded_nal_async::UdpStack`] is *not* implemented at the moment: As its API allows
4-
//! arbitrary creation of movable sockets, embassy's [`udp::UdpSocket`] type could only be crated if
4+
//! arbitrary creation of movable sockets, embassy's [`udp::UdpSocket`] type could only be created if
55
//! the NAL stack had a pre-allocated pool of sockets with their respective buffers. Nothing rules
66
//! out such a type, but at the moment, only the bound or connected socket types are implemented
77
//! with their own constructors from an embassy [`crate::Stack`] -- for many applications, those are

src/ariel-os-nrf/src/ble.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ impl Peripherals {
100100
/// Panics if initialization fails on one of the components, such as MPSL or SDC.
101101
#[expect(
102102
clippy::needless_pass_by_value,
103-
reason = "keeping constitency with other initialization functions"
103+
reason = "keeping consistency with other initialization functions"
104104
)]
105105
pub fn driver(p: Peripherals, spawner: Spawner, config: ariel_os_embassy_common::ble::Config) {
106106
debug!("Initializing nRF BLE driver");

src/ariel-os-rp/src/cyw43/firmware/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ Licensed under the [Infineon Permissive Binary License](./LICENSE-permissive-bin
66

77
## Changelog
88

9-
* 2023-07-28: synced with `ad3bad0` - Update 43439 fw from 7.95.55 ot 7.95.62
9+
* 2023-07-28: synced with `ad3bad0` - Update 43439 fw from 7.95.55 to 7.95.62

src/lib/coapcore/src/oluru.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ impl<T: PriorityLevel, const N: usize, const L: usize> OrderedPool<T, N, L> {
239239
debug_assert!(level < L, "Level exceeds limit L={L} in type");
240240
let mut new_position = position;
241241
// Common case: level stayed the same, but we move to front; also applicable when numeric
242-
// level decrased
242+
// level decreased
243243
while new_position
244244
.checked_sub(1)
245245
.is_some_and(|n| self.entries[usize::from(self.sorted[n])].level() >= level)

src/lib/coapcore/src/seccfg.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ pub struct ConfigBuilder {
202202
as_key_31: Option<[u8; 32]>,
203203
/// Asymmetric key used when tokens are signed with ES256
204204
///
205-
/// Alogn with the key, this also holds the audience value of this RS (as signed tokens only
205+
/// Along with the key, this also holds the audience value of this RS (as signed tokens only
206206
/// make sense when the same signing key is used with multiple recipients).
207207
as_key_neg7: Option<([u8; 32], [u8; 32], heapless::String<MAX_AUD_SIZE>)>,
208208
unauthenticated_scope: Option<crate::scope::UnionScope>,

0 commit comments

Comments
 (0)