From a9ed55c00652a563391a7930c7a4649967131ae1 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Thu, 9 Dec 2021 10:54:04 -0800 Subject: [PATCH] fix spelling --- docs/parsers/csv_s.md | 2 +- docs/parsers/iostat_s.md | 2 +- docs/parsers/ls_s.md | 2 +- docs/parsers/ping_s.md | 2 +- docs/parsers/vmstat_s.md | 2 +- jc/parsers/csv_s.py | 2 +- jc/parsers/foo_s.py | 2 +- jc/parsers/iostat_s.py | 2 +- jc/parsers/ls_s.py | 2 +- jc/parsers/ping_s.py | 2 +- jc/parsers/vmstat_s.py | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/parsers/csv_s.md b/docs/parsers/csv_s.md index 4ff04d50..602c08ba 100644 --- a/docs/parsers/csv_s.md +++ b/docs/parsers/csv_s.md @@ -29,7 +29,7 @@ Schema: "column_name2": string, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/docs/parsers/iostat_s.md b/docs/parsers/iostat_s.md index 6f3ad819..0acda54f 100644 --- a/docs/parsers/iostat_s.md +++ b/docs/parsers/iostat_s.md @@ -73,7 +73,7 @@ Schema: "percent_wrqm": float, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/docs/parsers/ls_s.md b/docs/parsers/ls_s.md index 237ff159..cc1f0409 100644 --- a/docs/parsers/ls_s.md +++ b/docs/parsers/ls_s.md @@ -39,7 +39,7 @@ Schema: "epoch_utc": integer, # timezone aware timestamp if date field is in UTC and can be converted "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/docs/parsers/ping_s.md b/docs/parsers/ping_s.md index ae0e26ba..33a462b0 100644 --- a/docs/parsers/ping_s.md +++ b/docs/parsers/ping_s.md @@ -46,7 +46,7 @@ Schema: "round_trip_ms_stddev": float, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/docs/parsers/vmstat_s.md b/docs/parsers/vmstat_s.md index 214814d9..e248f942 100644 --- a/docs/parsers/vmstat_s.md +++ b/docs/parsers/vmstat_s.md @@ -63,7 +63,7 @@ Schema: "epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/jc/parsers/csv_s.py b/jc/parsers/csv_s.py index c918d00d..72393c44 100644 --- a/jc/parsers/csv_s.py +++ b/jc/parsers/csv_s.py @@ -26,7 +26,7 @@ Schema: "column_name2": string, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/jc/parsers/foo_s.py b/jc/parsers/foo_s.py index 03962509..5444372c 100644 --- a/jc/parsers/foo_s.py +++ b/jc/parsers/foo_s.py @@ -21,7 +21,7 @@ Schema: "foo": string, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/jc/parsers/iostat_s.py b/jc/parsers/iostat_s.py index 7a0e9203..e2fd3237 100644 --- a/jc/parsers/iostat_s.py +++ b/jc/parsers/iostat_s.py @@ -70,7 +70,7 @@ Schema: "percent_wrqm": float, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/jc/parsers/ls_s.py b/jc/parsers/ls_s.py index 465a0b69..27117d27 100644 --- a/jc/parsers/ls_s.py +++ b/jc/parsers/ls_s.py @@ -36,7 +36,7 @@ Schema: "epoch_utc": integer, # timezone aware timestamp if date field is in UTC and can be converted "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/jc/parsers/ping_s.py b/jc/parsers/ping_s.py index 6cfe9ec7..3f3b7cdd 100644 --- a/jc/parsers/ping_s.py +++ b/jc/parsers/ping_s.py @@ -43,7 +43,7 @@ Schema: "round_trip_ms_stddev": float, "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false } diff --git a/jc/parsers/vmstat_s.py b/jc/parsers/vmstat_s.py index 188042e5..044c79a0 100644 --- a/jc/parsers/vmstat_s.py +++ b/jc/parsers/vmstat_s.py @@ -60,7 +60,7 @@ Schema: "epoch_utc": integer # aware timestamp if -t flag is used and UTC TZ "_jc_meta": # This object only exists if using -qq or ignore_exceptions=True { - "success": booean, # true if successfully parsed, false if error + "success": boolean, # true if successfully parsed, false if error "error": string, # exists if "success" is false "line": string # exists if "success" is false }