Skip to content

Commit

Permalink
fix typo, parapgraph -> paragraph (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: Dylan Schiemann <dylan@livingspec.com>
  • Loading branch information
dylans and dylans authored Dec 26, 2020
1 parent 8f7ec2f commit d675f96
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/deserialize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export default function deserialize(
};
}
// TODO: Handle other HTML?
return { type: 'parapgraph', children: [{ text: '' }] };
return { type: 'paragraph', children: [{ text: '' }] };

case 'emphasis':
return {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ Object {
"text": "",
},
],
"type": "parapgraph",
"type": "paragraph",
}
`;

0 comments on commit d675f96

Please sign in to comment.