Commit 8169941742dc84e745b2a78fc8c269fbd7af2e41

Authored by Sytse Sijbrandij
2 parents 30c2f8fb acd2702e

Merge branch 'hooks_spelling' of /mnt/ebs/repositories/mmoll/gitlab-ce

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
app/views/projects/hooks/index.html.haml
... ... @@ -3,7 +3,7 @@
3 3  
4 4 %p.light
5 5 #{link_to "Web hooks ", help_web_hooks_path, class: "vlink"} can be
6   - used for binding events when something happends to the the project.
  6 + used for binding events when something is happening within the project.
7 7  
8 8 %hr.clearfix
9 9  
... ... @@ -25,21 +25,21 @@
25 25 = f.label :push_events, class: 'list-label' do
26 26 %strong Push events
27 27 %p.light
28   - This url will be triggered in case of push to repository
  28 + This url will be triggered by a push to the repository
29 29 %div
30 30 = f.check_box :issues_events, class: 'pull-left'
31 31 .prepend-left-20
32 32 = f.label :issues_events, class: 'list-label' do
33 33 %strong Issues events
34 34 %p.light
35   - This url will be triggered for created issues
  35 + This url will be triggered when an issue is created
36 36 %div
37 37 = f.check_box :merge_requests_events, class: 'pull-left'
38 38 .prepend-left-20
39 39 = f.label :merge_requests_events, class: 'list-label' do
40 40 %strong Merge Request events
41 41 %p.light
42   - This url will be triggered for created merge requests
  42 + This url will be triggered when a merge request is created
43 43 .form-actions
44 44 = f.submit "Add Web Hook", class: "btn btn-create"
45 45  
... ...