diff --git a/barnyard.py b/barnyard.py
index e86845a2025fcc67fad47440bcc56e1398bed3e7..8d2de1d6980c80d6ff68d0304962eb15b8ac8104 100644
--- a/barnyard.py
+++ b/barnyard.py
@@ -1,6 +1,6 @@
 class Animal:
     """
-    This is base class should not be directly instantiated. All subclasses should have a move() method.
+    This base class should not be directly instantiated. All subclasses should have a move() method.
     """
     def __init__(self, name):
         self.name = name