Parsed all repo with a regexp of common misspelled words and fixed.
This commit is contained in:
garanews
2020-10-07 11:29:30 +01:00
committed by GitHub
parent 9c112cd785
commit 61749dee23
28 changed files with 37 additions and 37 deletions
@@ -60,7 +60,7 @@ export const formatRegistry = new Registry<FormatRegistryItem>(() => {
{
id: 'pipe',
name: 'Pipe',
description: 'Values are seperated by | character',
description: 'Values are separated by | character',
formatter: ({ value }) => {
if (typeof value === 'string') {
return value;
@@ -90,7 +90,7 @@ export const formatRegistry = new Registry<FormatRegistryItem>(() => {
{
id: 'csv',
name: 'Csv',
description: 'Comma seperated values',
description: 'Comma separated values',
formatter: ({ value }) => {
if (isArray(value)) {
return value.join(',');