Skip to content

Commit

Permalink
Remove semicolons
Browse files Browse the repository at this point in the history
  • Loading branch information
wooorm committed Nov 3, 2018
1 parent af38d7c commit f4ae9b8
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ Syntactic units in unist syntax trees are called nodes, and implement the

```idl
interface Node {
type: string;
data: Data?;
position: Position?;
type: string
data: Data?
position: Position?
}
```

Expand Down Expand Up @@ -121,9 +121,9 @@ For example, in JavaScript, a tree can be passed through

```idl
interface Position {
start: Point;
end: Point;
indent: [number >= 1]?;
start: Point
end: Point
indent: [number >= 1]?
}
```

Expand Down Expand Up @@ -161,9 +161,9 @@ end at line `2`, column `6`, offset `11`.

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

Expand All @@ -188,7 +188,7 @@ implementing unist.

```idl
interface Parent <: Node {
children: [Node];
children: [Node]
}
```

Expand All @@ -201,7 +201,7 @@ The `children` field is a list representing the children of a node.

```idl
interface Literal <: Node {
value: any;
value: any
}
```

Expand Down

0 comments on commit f4ae9b8

Please sign in to comment.