Skip to content

Commit

Permalink
Tests: Fix typo in markdown escaping tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
jodator committed Aug 18, 2020
1 parent 5158209 commit 0f876d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const testCases = {
'right paren': { test: '\\)', result: ')' },
'greater than': { test: '\\>', result: '>' },
'hash': { test: '\\#', result: '#' },
'peroid': { test: '\\.', result: '.' },
'period': { test: '\\.', result: '.' },
'exclamation mark': { test: '\\!', result: '!' },
'plus': { test: '\\+', result: '+' },
'minus': { test: '\\-', result: '-' }
Expand Down

0 comments on commit 0f876d5

Please sign in to comment.