From 5fb2cba62742a24b562f1f5feb5ecb46f8b47e0f Mon Sep 17 00:00:00 2001 From: Mike Jackson Date: Tue, 16 Apr 2013 09:17:03 -0700 Subject: [PATCH] upper-class -> upper-case --- testing/TDD.md | 2 +- testing/python/exercise/dnautils.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/TDD.md b/testing/TDD.md index b12515a..370137a 100755 --- a/testing/TDD.md +++ b/testing/TDD.md @@ -38,7 +38,7 @@ This fails as not only are there no tests, there's no module or function. Let's Calculate the antiparallel of a DNA sequence. @param sequence: a DNA sequence expressed as an upper-case string. - @return antiparallel as an upper-class string. + @return antiparallel as an upper-case string. """ pass diff --git a/testing/python/exercise/dnautils.py b/testing/python/exercise/dnautils.py index 01cd5db..b7cbddc 100755 --- a/testing/python/exercise/dnautils.py +++ b/testing/python/exercise/dnautils.py @@ -22,7 +22,7 @@ def inverse(sequence): Calculate the inverse of a DNA sequence. @param sequence: a DNA sequence expressed as an upper-case string. - @return inverse as an upper-class string. + @return inverse as an upper-case string. """ # Reverse string using approach recommended on StackOverflow # http://stackoverflow.com/questions/931092/reverse-a-string-in-python @@ -33,6 +33,6 @@ def antiparallel(sequence): Calculate the antiparallel of a DNA sequence. @param sequence: a DNA sequence expressed as an upper-case string. - @return antiparallel as an upper-class string. + @return antiparallel as an upper-case string. """ return inverse(complement(sequence)) -- 2.26.2