1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-03-04 08:08:09 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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.