1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-19 22:19:29 +02:00

Move const before static (#2305)

Motivation:
* const usecases are likely more familiar than static usecases
* currently the static slide refers `const`, before it's introduced

Background: static and const were previously on the same slide, with
const being introduced first (
https://github.com/google/comprehensive-rust/pull/1881 ) but when they
were split, static was moved first.
This commit is contained in:
tomf 2024-08-24 04:48:57 +10:00 committed by GitHub
parent d706758b07
commit 26979c9542
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,8 +63,8 @@
- [Named Structs](user-defined-types/named-structs.md)
- [Tuple Structs](user-defined-types/tuple-structs.md)
- [Enums](user-defined-types/enums.md)
- [Static](user-defined-types/static.md)
- [Const](user-defined-types/const.md)
- [Static](user-defined-types/static.md)
- [Type Aliases](user-defined-types/aliases.md)
- [Exercise: Elevator Events](user-defined-types/exercise.md)
- [Solution](user-defined-types/solution.md)