aboutsummaryrefslogtreecommitdiff
path: root/LogicParser.icl
diff options
context:
space:
mode:
authorCamil Staps2016-08-01 09:43:40 +0200
committerCamil Staps2016-08-01 09:43:40 +0200
commit9373cac4ca120dfebba2d98b4bd216d471e1ee92 (patch)
tree17958ac483e411b5031acf388c812e1855e85e41 /LogicParser.icl
parentMakefile, gitignore (diff)
Really fix #1
Diffstat (limited to 'LogicParser.icl')
-rw-r--r--LogicParser.icl2
1 files changed, 1 insertions, 1 deletions
diff --git a/LogicParser.icl b/LogicParser.icl
index 46ac605..852a882 100644
--- a/LogicParser.icl
+++ b/LogicParser.icl
@@ -26,7 +26,7 @@ module LogicParser
import StdEnv, StdMaybe, ArgEnv, Logic
Start
-| isEmpty exprs = abort ("Usage: " +++ argv.[0] +++ " -b -nt [-e] [-html|-latex] <string>\n")
+| isEmpty exprs = abort ("Usage: " +++ argv.[0] +++ " [-e] [-html|-latex] <string>\n")
| length (removeDup (foldr (++) [] (map all_atoms exprs))) > 8 = abort "You don't need more than 8 atomic expressions."
| otherwise = show outputoption (compute (if extended truthtable_n simple_truthtable_n exprs))
where