Skip to content
This repository has been archived by the owner on May 12, 2018. It is now read-only.

Commit

Permalink
Merge pull request #243 from jojosch/fix-typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
dzaporozhets committed Aug 2, 2013
2 parents 777c18b + ff6c31b commit 5f03883
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion app/assets/javascripts/application.js.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ $ ->
descr.next('.runner-description-form').show()

$('.assign-all-runner').on 'click', ->
$(this).replaceWith('<i class="icon-refresh icon-spin"></i> Assign in progres..')
$(this).replaceWith('<i class="icon-refresh icon-spin"></i> Assign in progress..')
2 changes: 1 addition & 1 deletion app/helpers/application_helper.rb
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def current_controller?(*args)
args.any? { |v| v.to_s.downcase == controller.controller_name }
end

# Check if a partcular action is the current one
# Check if a particular action is the current one
#
# args - One or more action names to check
#
Expand Down
2 changes: 1 addition & 1 deletion app/models/project.rb
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def valid_token? token
end

def no_running_builds?
# Get running builds not later than 3 days ago to ignore hungs
# Get running builds not later than 3 days ago to ignore hangs
builds.running.where("updated_at > ?", 3.days.ago).empty?
end
end
Expand Down
2 changes: 1 addition & 1 deletion doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ You can use either MySQL or PostgreSQL.
sudo -u gitlab_ci -H bundle exec rake db:setup RAILS_ENV=production


# Setup scedules
# Setup schedules
#
sudo -u gitlab_ci -H bundle exec whenever -w RAILS_ENV=production

Expand Down

0 comments on commit 5f03883

Please sign in to comment.