diff --git a/README.md b/README.md index 7600a5b..0b7ce4e 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ subcommands: bodycount Returns the number of bodies in a system. Will exit with code 1 on server error and code 2 if the system could not be found in EDSM. - distancebetween Calculates the distance between two systems. Will exti + distancebetween Calculates the distance between two systems. Will exit with code 1 on server error and code 2 if (one of) the systems could not be found on EDSM. ``` diff --git a/explorationtools.py b/explorationtools.py index 4db7edd..25da93c 100755 --- a/explorationtools.py +++ b/explorationtools.py @@ -50,7 +50,7 @@ parser_bodycount = subparsers.add_parser("bodycount", parser_bodycount.add_argument("system", nargs=1) parser_distance = subparsers.add_parser("distancebetween", - help="Calculates the distance between two systems. Will exti with code 1 " + help="Calculates the distance between two systems. Will exit with code 1 " + "on server error and code 2 if (one of) the systems could not be found " + "on EDSM.") parser_distance.add_argument("system", nargs=2)