We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46885ee commit 069b3a6Copy full SHA for 069b3a6
src/doc/book/primitive-types.md
@@ -98,10 +98,9 @@ and `i64` is a signed, 64-bit integer.
98
## Variable sized types
99
100
Rust also provides types whose particular size depends on the underlying machine
101
-architecture. Their range is sufficient to express sizes of collections and they
102
-are used to address items in a vector, for example. These types have ‘size’ as
103
-the category, and come in signed and unsigned varieties. This makes for two types:
104
-`isize` and `usize`.
+architecture. Their range is sufficient to express the size of any collection, so
+these types have ‘size’ as the category. They come in signed and unsigned varieties
+which makes for two types: `isize` and `usize`.
105
106
## Floating-point types
107
0 commit comments