Skip to content

Commit

Permalink
Fix spelling of primitive types
Browse files Browse the repository at this point in the history
Primitive types have been renamed in pull request carbon-language#861 and also the design document.
  • Loading branch information
ooxi authored Jul 24, 2022
1 parent 6cef464 commit c0c0aa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/design/primitive_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,14 @@ modifying other types. They also have semantics that are defined from first
principles rather than in terms of other operations. These will be made
available through the [prelude package](README.md#name-lookup-for-common-types).

- `Bool` - a boolean type with two possible values: `True` and `False`.
- `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`.
`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 c0c0aa5

Please sign in to comment.