Skip to content

Commit

Permalink
Fix spelling of primitive types (#1663)
Browse files Browse the repository at this point in the history
Primitive types have been renamed in pull request #861 and also the design document.
  • Loading branch information
ooxi authored Jul 24, 2022
1 parent 6cef464 commit 6224f50
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions docs/design/primitive_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,11 @@ available through the [prelude package](README.md#name-lookup-for-common-types).

- `Bool` - a boolean type with two possible values: `True` and `False`.
- `Int` and `UInt` - signed and unsigned 64-bit integer types.
- Standard sizes are available, both signed and unsigned, including
`Int8`, `Int16`, `Int32`, `Int128`, and `Int256`.
- Standard sizes are available, both signed and unsigned, including `i8`,
`i16`, `i32`, `i64`, `i128`, and `i256`.
- Overflow in either direction is an error.
- `Float64` - a floating point type with semantics based on IEEE-754.
- Standard sizes are available, including `Float16`, `Float32`, and
`Float128`.
- Standard sizes are available, including `f16`, `f32`, and `f128`.
- [`BFloat16`](primitive_types.md#bfloat16) is also provided.
- `String` - a byte sequence treated as containing UTF-8 encoded text.
- `StringView` - a read-only reference to a byte sequence treated as
Expand Down

0 comments on commit 6224f50

Please sign in to comment.