Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/modules/language-guide/pages/language-manual.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -668,7 +668,7 @@ A `Char` of category O (Ordered) represents a character as a code point in the U

Base library function `Char.toNat32(c)` converts a `Char` value, `c` to its `Nat32` code point.
Function `Char.fromNat32(n)` converts
a `Nat32` value, `n`, in the range _x0..xD800_ or _0xE000..0x10FFFF_ of valid code points to its `Char` value; this conversion traps on invalid arguments.
a `Nat32` value, `n`, in the range _0x0..xD7FF_ or _0xE000..0x10FFFF_ of valid code points to its `Char` value; this conversion traps on invalid arguments.
Function `Char.toText(c)` converts the `Char` `c`
into the corresponding, single character `Text` value.

Expand Down