Merge pull request #1926 from scop/spelling

Spelling fixes
This commit is contained in:
Vidar Holen 2020-05-02 18:39:44 -07:00 committed by GitHub
commit 8aa40c43ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -2622,7 +2622,7 @@ readFunctionDefinition = called "function" $ do
readWithoutFunction = try $ do
name <- many1 functionChars
guard $ name /= "time" -- Interfers with time ( foo )
guard $ name /= "time" -- Interferes with time ( foo )
spacing
readParens
return $ \id -> T_Function id (FunctionKeyword False) (FunctionParentheses True) name

View File

@ -9,7 +9,7 @@ fail() {
if git diff | grep -q ""
then
fail "There are uncommited changes"
fail "There are uncommitted changes"
fi
current=$(git tag --points-at)