Skip to content

Commit

Permalink
Fix typo in docs. (html5lib#300)
Browse files Browse the repository at this point in the history
Statement was repeated twice on a single line.
  • Loading branch information
jdufresne authored and gsnedders committed Oct 27, 2016
1 parent ff6111c commit 1a28d72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/movingparts.rst
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ To use a filter, simply wrap it around a stream:
>>> dom = html5lib.parse("<p><script>alert('Boo!')", treebuilder="dom")
>>> walker = html5lib.getTreeWalker("dom")
>>> stream = walker(dom)
>>> sane_stream = sanitizer.Filter(stream) clean_stream = sanitizer.Filter(stream)
>>> clean_stream = sanitizer.Filter(stream)
Tree adapters
Expand Down

0 comments on commit 1a28d72

Please sign in to comment.