Skip to content

Commit

Permalink
Use number to describe numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Aug 29, 2018
1 parent 8055bf4 commit a69dfa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ For example, in JavaScript, a tree can be passed through
interface Position {
start: Point;
end: Point;
indent: [uint32 >= 1]?;
indent: [number >= 1]?;
}
```

Expand All @@ -147,9 +147,9 @@ If the syntactic unit represented by a node is not present in the source

```idl
interface Point {
line: unsigned long >= 1;
column: unsigned long >= 1;
offset: unsigned long >= 0?;
line: number >= 1;
column: number >= 1;
offset: number >= 0?;
}
```

Expand Down

0 comments on commit a69dfa5

Please sign in to comment.