File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -98,10 +98,9 @@ and `i64` is a signed, 64-bit integer.
98
98
## Variable sized types
99
99
100
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 ` .
101
+ architecture. Their range is sufficient to express the size of any collection, so
102
+ these types have ‘size’ as the category. They come in signed and unsigned varieties
103
+ which makes for two types: ` isize ` and ` usize ` .
105
104
106
105
## Floating-point types
107
106
You can’t perform that action at this time.
0 commit comments