From 2c827c40e0c2586181b2b6ffde0a6553363ad71e Mon Sep 17 00:00:00 2001
From: Brandon Rodriguez <brodriguez8774@gmail.com>
Date: Sun, 11 Oct 2020 07:37:24 -0400
Subject: [PATCH] Improve example to make more sense

---
 readme.md | 2 +-
 utils.sh  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/readme.md b/readme.md
index f7d3935..c994898 100644
--- a/readme.md
+++ b/readme.md
@@ -51,7 +51,7 @@ These execute automatically on script import.
         * Ex: `-a`, `-b`, and `-run`.
     * `Kwargs` - Key-value pairs, where the key comes first and starts with "--". Associated value is
         * Note that the associated value must come immediately after the key.
-        * Ex: `--type false`, `--dir ./test`, and `--name Bob`.
+        * Ex: `--type int`, `--dir ./test`, and `--name Bob`.
 
 ### Directory Functions
 * `get_absolute_path` - Gets absolute path of passed location.
diff --git a/utils.sh b/utils.sh
index b293291..55c1efc 100755
--- a/utils.sh
+++ b/utils.sh
@@ -69,7 +69,7 @@ function normalize_terminal () {
  #      * Ex: "-a", "-b", and "-run".
  #  * Kwargs are key-value pairs, where the key comes first and starts with "--".
  #      * Note that the associated value must come immediately after the key.
- #      * Ex: "--type false", "--dir ./test", and "--name Bob".
+ #      * Ex: "--type int", "--dir ./test", and "--name Bob".
  #
  # Ordering of provided args, kwargs, and flags should not matter, aside from kwarg keys needing a corresponding value
  # as the direct next processed value.
-- 
GitLab