diff --git a/README.md b/README.md
index f345c45..467d2d4 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ several features and "sub-features".
- [x] [macros](lib/macros)
- [x] [sched](lib/sched)
-> [!NOTE] Sub-Features
+> [!NOTE]
>
>
ยป Means that the feature has sub-features.
>
diff --git a/lib/sched/README.md b/lib/sched/README.md
index 1a77516..5db8999 100644
--- a/lib/sched/README.md
+++ b/lib/sched/README.md
@@ -21,14 +21,22 @@ This library is for internal use. And as such, it's only published privately.
cargo add lool --registry=lugit --features sched
```
-# Additional Features
+# Sub-Features
-- `sched.tokio`: Enables the `tokio` runtime support.
-- `sched.rule-recurrent`: Enables the "recurrent-rule" style for scheduling tasks.
-- `sched.rule-cron`: Enables the "cron-like" style for scheduling tasks
-> [!WARNING] Not implemented warning
-> although the `sched.rule-cron` feature is available, it's not yet implemented.
+###
sched.tokio
+
+Enables the `tokio` runtime support, replacing the default behaviour, which implies a `std::thread` pool to run the tasks.
+
+###
sched.rule-recurrent
+
+Enables the "**recurrent-rule**" style for scheduling tasks.
+
+###
sched.rule-cron
+
+> [!WARNING]
+>
+> Not yet implemented
## Planned Features