Fix doc typo for "Sanitize Parentheses in Expression" contract (#389)

This commit is contained in:
quacksouls
2023-02-25 14:31:10 +11:00
committed by GitHub
parent 18eeb7c4e1
commit f50b731846
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1073,8 +1073,8 @@ export const codingContractTypesMetadata: ICodingContractTypeMetadata[] = [
"the result should be an array with only an empty string.\n\n",
"IMPORTANT: The string may contain letters, not just parentheses.",
`Examples:\n`,
`"()())()" -> [()()(), (())()]\n`,
`"(a)())()" -> [(a)()(), (a())()]\n`,
`"()())()" -> ["()()()", "(())()"]\n`,
`"(a)())()" -> ["(a)()()", "(a())()"]\n`,
`")(" -> [""]`,
].join(" ");
},