Fixed markdown file and spelling errors.

This commit is contained in:
Windsor 2025-07-13 21:04:41 +00:00
parent cf982a1156
commit 717db09a5f
2 changed files with 3 additions and 3 deletions

2
dna.py
View File

@ -12,7 +12,7 @@ or 100 milliseconds. Enjoy!"""
parser=argparse.ArgumentParser(description=desc, epilog=epi) parser=argparse.ArgumentParser(description=desc, epilog=epi)
parser.add_argument("-l", "--length", type=int, help="Changes the length of the ASCII DNA. Default = 40") parser.add_argument("-l", "--length", type=int, help="Changes the length of the ASCII DNA. Default = 40")
parser.add_argument("-p", "--pause", type=int, help="Number of milliseconds to pause after plotting each line. Default=0") parser.add_argument("-p", "--pause", type=int, help="Number of milliseconds to pause after plotting each line. Default=0")
parser.add_argument("-b", "--block", action="store_true", help="Display useing block characters instead of letters. Default=False") parser.add_argument("-b", "--block", action="store_true", help="Display using block characters instead of letters. Default=False")
args=parser.parse_args() args=parser.parse_args()
if args.length: length=args.length if args.length: length=args.length