1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-06-27 03:01:03 +02:00

Clarify that "fixed" means "compile-time constant"

This commit is contained in:
Martin Geisler
2023-01-11 15:49:10 +01:00
committed by GitHub
parent 41bb8acf3f
commit b6bec18875

View File

@ -31,7 +31,7 @@ Key points:
Arrays:
*Arrays have elements of the same type, T, and length, N, which is fixed.
*Arrays have elements of the same type, `T`, and length, `N`, which is a compile-time constant.
*We can use literals to assign values to arrays.