Skip to content

Commit 25a1b18

Browse files
committed
doc: sort OS names alphabetically
1 parent db50a9e commit 25a1b18

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/r3/src/kernel/event_group.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ pub type AtomicEventGroupBits = AtomicU32;
2828
///
2929
/// <div class="admonition-follows"></div>
3030
///
31-
/// > **Relation to Other Specifications:** Eventflag (μITRON4.0),
32-
/// > `EventFlags` (Mbed OS), event group (FreeRTOS), event (RT-Thread),
33-
/// > event group (Freescale MQX), event set (RTEMS, assigned to each task),
34-
/// > events (OSEK/VDX, assigned to each extended task)
31+
/// > **Relation to Other Specifications:**
32+
/// > event group (FreeRTOS), event group (Freescale MQX), `EventFlags` (Mbed
33+
/// > OS), events (OSEK/VDX, assigned to each extended task), event (RT-Thread),
34+
/// > event set (RTEMS, assigned to each task), Eventflag (μITRON4.0)
3535
#[doc(include = "../common.md")]
3636
#[repr(transparent)]
3737
pub struct EventGroup<System>(Id, PhantomData<System>);

src/r3/src/kernel/startup.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use crate::utils::Init;
1515
/// <div class="admonition-follows"></div>
1616
///
1717
/// > **Relation to Other Specifications:** `StartupHook` (AUTOSAR OS,
18-
/// > OSEK/VDX), initialization routine (μITRON4.0), last function (TI-RTOS).
18+
/// > OSEK/VDX), last function (TI-RTOS), initialization routine (μITRON4.0).
1919
///
2020
#[doc(include = "../common.md")]
2121
pub struct StartupHook<System>(PhantomData<System>);

0 commit comments

Comments
 (0)