Skip to content

Commit

Permalink
Merge pull request #525 from timgates42/bugfix_typos
Browse files Browse the repository at this point in the history
docs: Fix a few typos
  • Loading branch information
stevepiercy authored Jul 15, 2022
2 parents 7ba5ac8 + ff4b38b commit f4da7df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deform/widget.py
Original file line number Diff line number Diff line change
Expand Up @@ -2019,7 +2019,7 @@ class TextAreaCSVWidget(Widget):
quoting = csv.QUOTE_MINIMAL

def serialize(self, field, cstruct, **kw):
# XXX make cols and rows overrideable
# XXX make cols and rows overridable
if cstruct is null:
cstruct = []
textrows = getattr(field, "unparseable", None)
Expand Down Expand Up @@ -2096,7 +2096,7 @@ class TextInputCSVWidget(Widget):
mask_placeholder = "_"

def serialize(self, field, cstruct, **kw):
# XXX make size and mask overrideable
# XXX make size and mask overridable
if cstruct is null:
cstruct = ""
textrow = getattr(field, "unparseable", None)
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@
# The format is a list of tuples containing the path and title.
#epub_pre_files = []

# HTML files shat should be inserted after the pages created by sphinx.
# HTML files that should be inserted after the pages created by sphinx.
# The format is a list of tuples containing the path and title.
#epub_post_files = []

Expand Down

0 comments on commit f4da7df

Please sign in to comment.