From ffa096d98858319044d78a3dca1a1e5d3847a8e6 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Mon, 28 Dec 2020 12:33:11 +1100 Subject: [PATCH] docs: fix simple typo, sysyem -> system (#1300) There is a small typo in src/gam/controlflow.py. Should read `system` rather than `sysyem`. --- src/gam/controlflow.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gam/controlflow.py b/src/gam/controlflow.py index 5ff46e3c..e4402986 100644 --- a/src/gam/controlflow.py +++ b/src/gam/controlflow.py @@ -66,7 +66,7 @@ def csv_field_error_exit(field_name, field_names): def invalid_json_exit(file_name): - """Raises a sysyem exit when invalid JSON content is encountered.""" + """Raises a system exit when invalid JSON content is encountered.""" system_error_exit(17, MESSAGE_INVALID_JSON.format(file_name))