typo corrected: exti → exit

This commit is contained in:
alterNERDtive 2019-10-22 01:33:35 +02:00
parent a2c0f2d93f
commit 09d528b7d5
2 changed files with 2 additions and 2 deletions

View file

@ -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.
```

View file

@ -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)