File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed
Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -45,34 +45,34 @@ keywords:
4545
4646## Data types
4747
48- #### Boolean
48+ ### Boolean
4949A boolean value, either ` true ` or ` false `
5050
51- #### Unsigned integers
51+ ### Unsigned integers
5252
5353- ` uint8 ` : unsigned 8-bit integer
5454- ` uint16 ` : unsigned 16-bit integer
5555- ` uint32 ` : unsigned 32-bit integer
5656- ` uint64 ` : unsigned 64-bit integer
5757
58- #### Signed integers
58+ ### Signed integers
5959
6060- ` sint8 ` : signed 8-bit integer
6161- ` sint16 ` : signed 16-bit integer
6262- ` sint32 ` : signed 32-bit integer
6363- ` sint64 ` : signed 64-bit integer
6464
65- #### Floating point values
65+ ### Floating point values
6666
6767- ` float32 ` : a single-precision float
6868- ` float64 ` : a double-precision float
6969
70- #### Simple collections
70+ ### Simple collections
7171
7272- ` binary ` : a binary blob represented as a sequence of ` uint8 ` values
7373- ` string ` : an UTF-8 string
7474
75- #### Complex collections
75+ ### Complex collections
7676
7777- ` list ` : a list of any of the data types, including nested lists
7878 - A list is represented as: ` [] ` with values inbetween. For example, a ` list { type:string } ` would be represented as:
You can’t perform that action at this time.
0 commit comments