Skip to content

Commit

Permalink
chore: fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dermasmid committed Dec 7, 2021
1 parent 1d960a5 commit ef2c744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ You can pass the json in any of the following formats:
| --------- | ----------------------------------------------------------------------|
| `data` | The data in any of [these](#formats-you-can-pass-the-json-as) formats.|
| `-o` | Add a button that will output the json back to the console. |
| `-b` | Keep running in backround. |
| `-b` | Keep running in background. |
| `-c` | Get JSON input from clipboard. |
| `-k` | Keep alive. |
| `-e` | Edit mode. |
Expand Down
2 changes: 1 addition & 1 deletion jsoneditor/jsoneditor.py
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ def main() -> None:
help="Add a button that will output the json back to the console",
action="store_true",
)
parser.add_argument("-b", help="Keep running in backround", action="store_true")
parser.add_argument("-b", help="Keep running in background", action="store_true")
parser.add_argument("-c", help="Get data input from clipboard", action="store_true")
parser.add_argument("-k", help="Keep alive", action="store_true")
parser.add_argument("-e", help="Edit mode", action="store_true")
Expand Down

0 comments on commit ef2c744

Please sign in to comment.