Skip to content

Commit

Permalink
fix(docs): incorrect Marker definition signature (#588)
Browse files Browse the repository at this point in the history
  • Loading branch information
reconbot authored and YoranBrondsema committed Oct 9, 2017
1 parent 1d4796b commit 6a6940a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions MOBILEDOC.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ The text of a document is held in markers which signal where markup and atoms ap
[0, [0], 1, "Example wrapped in b tag (opened markup #0), 1 closed markup"],
[0, [1], 0, "Example opening i tag (opened markup with #1, 0 closed markups)"],
[0, [], 1, "Example closing i tag (no opened markups, 1 closed markup)"],
[0, [1, 0], 1, "Example opening i tag and b tag, closing b tag (opened markups #1 and #0, 1 closed markup [closes markup #1])"],
[0, [], 1, "Example closing b tag, (no opened markups, 1 closed markup [closes markup #0])"],
[0, [1, 0], 1, "Example opening i tag and b tag, closing b tag (opened markups #1 and #0, 1 closed markup [closes markup #0])"],
[0, [], 1, "Example closing i tag, (no opened markups, 1 closed markup [closes markup #1])"],
]],
[1, "p", [
[textTypeIdentifier, openMarkupsIndexes, numberOfClosedMarkups, atomIndex],
Expand Down Expand Up @@ -287,7 +287,7 @@ List similar to markup sections but have a set of markers for each list item.
]
sections: [
[sectionTypeIdentifier, tagName, [markers, markers, markers]],
[3, "ol", [
[3, "ol", [
[
[0, [], 0, "Plain"]
],
Expand Down

0 comments on commit 6a6940a

Please sign in to comment.