summaryrefslogtreecommitdiffstats
path: root/src/doc/rust-by-example/src/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/rust-by-example/src/index.md')
-rw-r--r--src/doc/rust-by-example/src/index.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/doc/rust-by-example/src/index.md b/src/doc/rust-by-example/src/index.md
index ecadff4cc..e42c196d1 100644
--- a/src/doc/rust-by-example/src/index.md
+++ b/src/doc/rust-by-example/src/index.md
@@ -21,9 +21,9 @@ Now let's begin!
- [Types](types.md) - Learn about changing and defining types.
-- [Conversion](conversion.md)
+- [Conversion](conversion.md) - Convert between different types, such as strings, integers, and floats.
-- [Expressions](expression.md)
+- [Expressions](expression.md) - Learn about Expressions & how to use them.
- [Flow of Control](flow_control.md) - `if`/`else`, `for`, and others.
@@ -43,7 +43,7 @@ Now let's begin!
- [Traits](trait.md) - A trait is a collection of methods defined for an unknown type: `Self`
-- [Macros](macros.md)
+- [Macros](macros.md) - Macros are a way of writing code that writes other code, which is known as metaprogramming.
- [Error handling](error.md) - Learn Rust way of handling failures.
@@ -53,9 +53,9 @@ Now let's begin!
- [Testing](testing.md) - All sorts of testing in Rust.
-- [Unsafe Operations](unsafe.md)
+- [Unsafe Operations](unsafe.md) - Learn about entering a block of unsafe operations.
-- [Compatibility](compatibility.md)
+- [Compatibility](compatibility.md) - Handling Rust's evolution and potential compatibility issues.
- [Meta](meta.md) - Documentation, Benchmarking.