From ce614a911af2054bf8c71f54b7eb1b5df7c9d427 Mon Sep 17 00:00:00 2001 From: Christopher Bohn <bohn@unl.edu> Date: Fri, 21 Feb 2020 10:10:17 -0600 Subject: [PATCH] corrected English grammar error --- barnyard.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barnyard.py b/barnyard.py index e86845a..8d2de1d 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 -- GitLab