From 104b2db2a026fa0cb393af3744c1c36c23d5ba0d Mon Sep 17 00:00:00 2001 From: "janx@chromium.org" Date: Thu, 18 Apr 2013 12:58:40 +0000 Subject: [PATCH] Add missing word "be" in CL description comments s/This will displayed/This will be displayed/g BUG= Review URL: https://chromiumcodereview.appspot.com/13811053 git-svn-id: svn://svn.chromium.org/chrome/trunk/tools/depot_tools@194907 0039d316-1c4b-4281-b951-d872f2087c98 --- git_cl.py | 2 +- tests/git_cl_test.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/git_cl.py b/git_cl.py index a186029f1..961a4abb1 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 a890dac4f..ae71c1cd7 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)