File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -97,9 +97,11 @@ and `i64` is a signed, 64-bit integer.
97
97
98
98
## Variable sized types
99
99
100
- Rust also provides types whose size depends on the size of a pointer of the
101
- underlying machine. These types have ‘size’ as the category, and come in signed
102
- and unsigned varieties. This makes for two types: ` isize ` and ` usize ` .
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 ` .
103
105
104
106
## Floating-point types
105
107
You can’t perform that action at this time.
0 commit comments