Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2012-09-23 01:06:19 +0400
committerRobert Speicher <rspeicher@gmail.com>2012-09-23 01:06:30 +0400
commitad3eefdcb8cf08007c45876afea20109b5984876 (patch)
treec2c5b6f15dc7e835b9d7c94ad2599c75ee87a186
parent4afb7b7cb7b42688bea70298c80b4735f59dab22 (diff)
Minor grammar change
[ci skip]
-rw-r--r--app/views/events/_event_last_push.html.haml2
-rw-r--r--features/steps/dashboard/dashboard.rb2
2 files changed, 2 insertions, 2 deletions
diff --git a/app/views/events/_event_last_push.html.haml b/app/views/events/_event_last_push.html.haml
index aa1d28f2be3..81b9994cff5 100644
--- a/app/views/events/_event_last_push.html.haml
+++ b/app/views/events/_event_last_push.html.haml
@@ -2,7 +2,7 @@
.event_lp
%div
= image_tag gravatar_icon(event.author_email), class: "avatar"
- %span Your pushed to
+ %span You pushed to
= event.ref_type
= link_to project_commits_path(event.project, ref: event.ref_name) do
%strong= truncate(event.ref_name, length: 28)
diff --git a/features/steps/dashboard/dashboard.rb b/features/steps/dashboard/dashboard.rb
index 6c603bbea55..154b97e34d3 100644
--- a/features/steps/dashboard/dashboard.rb
+++ b/features/steps/dashboard/dashboard.rb
@@ -16,7 +16,7 @@ class Dashboard < Spinach::FeatureSteps
end
Then 'I should see last push widget' do
- page.should have_content "Your pushed to branch new_design"
+ page.should have_content "You pushed to branch new_design"
page.should have_link "Create Merge Request"
end