diff --git a/git_cl.py b/git_cl.py index a186029f18..961a4abb16 100755 --- a/git_cl.py +++ b/git_cl.py @@ -838,7 +838,7 @@ class ChangeDescription(object): """Asks the user to update the description.""" self._description = ( '# Enter a description of the change.\n' - '# This will displayed on the codereview site.\n' + '# This will be displayed on the codereview site.\n' '# The first line will also be used as the subject of the review.\n' ) + self._description diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py index a890dac4f3..ae71c1cd7d 100755 --- a/tests/git_cl_test.py +++ b/tests/git_cl_test.py @@ -331,7 +331,7 @@ class TestGitCl(TestCase): def RunEditor(desc, _): self.assertEquals( '# Enter a description of the change.\n' - '# This will displayed on the codereview site.\n' + '# This will be displayed on the codereview site.\n' '# The first line will also be used as the subject of the review.\n' + expected_description, desc)