Skip to content

Commit a69dfa5

Browse files
committed
Use number to describe numbers
1 parent 8055bf4 commit a69dfa5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

readme.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ For example, in JavaScript, a tree can be passed through
123123
interface Position {
124124
start: Point;
125125
end: Point;
126-
indent: [uint32 >= 1]?;
126+
indent: [number >= 1]?;
127127
}
128128
```
129129

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

148148
```idl
149149
interface Point {
150-
line: unsigned long >= 1;
151-
column: unsigned long >= 1;
152-
offset: unsigned long >= 0?;
150+
line: number >= 1;
151+
column: number >= 1;
152+
offset: number >= 0?;
153153
}
154154
```
155155

0 commit comments

Comments
 (0)