aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2020-12-14 10:05:54 -0800
committerGitHub <noreply@github.com>2020-12-14 10:05:54 -0800
commit03c897c7eea4ed3209d6d0fd2aa01f794a5ed893 (patch)
treeaf9599556bd9fcff8395dc3e0718cf7509c0b3b5
parent39153ea6e2a77604e3302c5591fbb65496c3457a (diff)
parentc1fb4d3729d9710b8aa8d3c3999c7b18f3c1b125 (diff)
downloadpandoc-03c897c7eea4ed3209d6d0fd2aa01f794a5ed893.tar.gz
Merge pull request #6949 from wikey/patch-1
typo
-rw-r--r--doc/lua-filters.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lua-filters.md b/doc/lua-filters.md
index b715b8218..787365212 100644
--- a/doc/lua-filters.md
+++ b/doc/lua-filters.md
@@ -1513,7 +1513,7 @@ with the [`pandoc.Attr`](#pandoc.attr) constructor. For
convenience, it is usually not necessary to construct the value
directly if it is part of an element, and it is sufficient to
pass an HTML-like table. E.g., to create a span with identifier
-"text" and classes "a" and "b", on can write:
+"text" and classes "a" and "b", one can write:
local span = pandoc.Span('text', {id = 'text', class = 'a b'})