Skip to content

Commit e55892f

Browse files
d-e-s-oryzhyk
authored andcommitted
Fix a few typos
This change fixes a couple of typos I encountered while going through the code.
1 parent bfd95ca commit e55892f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

test/Spec.hs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{-
2-
Copyright (c) 2018 VMware, Inc.
2+
Copyright (c) 2018-2019 VMware, Inc.
33
SPDX-License-Identifier: MIT
44
55
Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -271,7 +271,7 @@ cliTest progress fname specname rust_dir extra_args = do
271271
"\n\nstdout written to:\n" ++ dumpfile
272272

273273
-- A version of golden test that supports multiple output files.
274-
-- Uses strict evluation to avoid errors lazily reading and then writing the
274+
-- Uses strict evaluation to avoid errors lazily reading and then writing the
275275
-- same file.
276276
goldenVsFiles :: TestName -> [FilePath] -> [FilePath] -> IO () -> TestTree
277277
goldenVsFiles name ref new act =

tools/souffle_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ def process_file(self, rel, inFileName, inDelimiter, sort):
538538
fields = line.rstrip('\n').split(inDelimiter)
539539
result = []
540540
# Special handling for the empty tuple, which seems
541-
# to be written as () in Souffle, instead of the emtpy string
541+
# to be written as () in Souffle, instead of the empty string
542542
if len(converter) == 0 and len(fields) == 1 and fields[0] == "()":
543543
fields = []
544544
elif len(fields) != len(converter):

0 commit comments

Comments
 (0)