Skip to content

Commit

Permalink
Merge pull request #318 from fdb/patch-1
Browse files Browse the repository at this point in the history
Correct spelling of "multiplication"
  • Loading branch information
suchow committed Mar 7, 2016
2 parents 7b3b06f + e78759d commit ed88951
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions proselint/checks/butterick/symbols.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ def check_sentence_spacing(text):

@memoize
def check_multiplication_symbol(text):
u"""Use the multiplcation symbol ×, not the lowercase letter x."""
u"""Use the multiplication symbol ×, not the lowercase letter x."""
err = "butterick.symbols.multiplication_symbol"
msg = u"Use the multiplcation symbol ×, not the letter x."
msg = u"Use the multiplication symbol ×, not the letter x."
regex = "[0-9]+ ?x ?[0-9]+"

return existence_check(
Expand Down

0 comments on commit ed88951

Please sign in to comment.