Skip to content

Commit

Permalink
Remove undefined for checked on list-items
Browse files Browse the repository at this point in the history
Closes GH-7.
  • Loading branch information
wooorm committed Feb 5, 2016
1 parent b30949e commit fbf003a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -285,16 +285,15 @@ Yields:

Loose `ListItem`s often contain more than one block-level elements.

When in `gfm: true` mode, a checked property exists on `ListItem`s,
either set to `true` (when checked), `false` (when unchecked), or `null`
(when not containing a checkbox). See [Task Lists on GitHub][task-list]
for information.
A checked property exists on `ListItem`s, set to `true` (when checked),
`false` (when unchecked), or `null` (when not containing a checkbox).
See [Task Lists on GitHub][task-list] for information.

```idl
interface ListItem <: Parent {
type: "listItem";
loose: true | false;
checked: true | false | null | undefined;
checked: true | false | null;
}
```

Expand Down

0 comments on commit fbf003a

Please sign in to comment.