Skip to content

Commit

Permalink
Fix heading levels
Browse files Browse the repository at this point in the history
  • Loading branch information
ohsayan committed Jan 9, 2024
1 parent b6c5dbb commit d335e71
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docs/blueql/1.overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,34 +45,34 @@ keywords:

## Data types

#### Boolean
### Boolean
A boolean value, either `true` or `false`

#### Unsigned integers
### Unsigned integers

- `uint8`: unsigned 8-bit integer
- `uint16`: unsigned 16-bit integer
- `uint32`: unsigned 32-bit integer
- `uint64`: unsigned 64-bit integer

#### Signed integers
### Signed integers

- `sint8`: signed 8-bit integer
- `sint16`: signed 16-bit integer
- `sint32`: signed 32-bit integer
- `sint64`: signed 64-bit integer

#### Floating point values
### Floating point values

- `float32`: a single-precision float
- `float64`: a double-precision float

#### Simple collections
### Simple collections

- `binary`: a binary blob represented as a sequence of `uint8` values
- `string`: an UTF-8 string

#### Complex collections
### Complex collections

- `list`: a list of any of the data types, including nested lists
- A list is represented as: `[]` with values inbetween. For example, a `list { type:string }` would be represented as:
Expand Down

0 comments on commit d335e71

Please sign in to comment.