浏览代码

Tests: Fix typo in markdown escaping tests.

Maciej Gołaszewski 5 年之前
父节点
当前提交
0f876d5a72
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      packages/ckeditor5-markdown-gfm/tests/gfmdataprocessor/escaping.js

+ 1 - 1
packages/ckeditor5-markdown-gfm/tests/gfmdataprocessor/escaping.js

@@ -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: '-' }