diff --git a/README.md b/README.md index 1a26910..b2edbd0 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/dna.py b/dna.py index 524c0c3..f438a9f 100644 --- a/dna.py +++ b/dna.py @@ -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