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/ref/language.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ Boolean has two values: `true` and `false`. They are the only values which can b

### String

Strings in Jsonnet are sequences of Unicode codepoints.
Strings in Jsonnet are sequences of Unicode [codepoints](https://en.wikipedia.org/wiki/Code_point).

In most contexts a string can be treated as an array of one codepoint strings (e.g. `std.length` and the `[]` operator work like that). Comparisons (`<`, `<=`, `>`, `>=`) and equality checks (`==`, `!=`) also follow this pattern – in both cases codepoints will be compared lexicographically.

Expand Down