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

View File

@ -1,4 +1,4 @@
#Clever Heading Goes Here.
# Clever Heading Goes Here.
This is just a Python script that makes an ascii art DNA strand. It took me way too long to make for what it is, but it was fun.
@ -8,6 +8,6 @@ When I signed up for tilde.club, the starting message says "Make a disaster, be
So that's what I did. And that's what I'll continue to do, when I'm not outsiding. But it's too dang hot this weekend. So, ASCII art.
###Does this really need a license?
### Does this really need a license?
Just consider it MIT I guess if you really need one.

2
dna.py
View File

@ -12,7 +12,7 @@ or 100 milliseconds. Enjoy!"""
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("-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()
if args.length: length=args.length