diff --git a/README.md b/README.md index 61c40fdd..609c4526 100644 --- a/README.md +++ b/README.md @@ -448,7 +448,7 @@ travis-ci/gh: disabled :( -b, --background will trigger sync but not block until sync is done -f, --force will force sync, even if one is already running -Sometimes the infos Travis CI has about users and repositories become out of date. If that should happen, you can manually trigger a sync: +Sometimes the info Travis CI has about users and repositories become out of date. If that should happen, you can manually trigger a sync: ``` console $ travis sync @@ -701,7 +701,7 @@ job #57.1 has been canceled #### `disable` -If you want to turn of a repository temporarily or indefinitely, you can do so with the `disable` command: +If you want to turn off a repository temporarily or indefinitely, you can do so with the `disable` command: ``` console $ travis disable @@ -772,7 +772,7 @@ For deploy keys, it is really handy to pipe them into the command: $ cat id_rsa | travis encrypt ``` -Another use case for piping files into it: If you have a file with sensitive environment variables, like foreman's [.env](http://ddollar.github.com/foreman/#ENVIRONMENT) file, you can add tell the client to encrypt every line separately via `--split`: +Another use case for piping files into it: If you have a file with sensitive environment variables, like foreman's [.env](http://ddollar.github.com/foreman/#ENVIRONMENT) file, you can tell the client to encrypt every line separately via `--split`: ``` console $ cat .env | travis encrypt --split @@ -1269,7 +1269,7 @@ Encrypt API key? |yes| #### `show` -Displays general infos about the latest build: +Displays general info about the latest build: ``` console $ travis show @@ -1412,7 +1412,7 @@ Uploading public key to GitHub. Uploading private key to Travis CI. ``` -See the [private dependencies example](examples/cli/private_dependencies.md) for an in-detail description. +See [Private Dependencies](https://docs.travis-ci.com/user/private-dependencies/) for an in-detail description. #### `status` diff --git a/lib/travis/cli/help.rb b/lib/travis/cli/help.rb index 775ed307..052d5acd 100644 --- a/lib/travis/cli/help.rb +++ b/lib/travis/cli/help.rb @@ -11,7 +11,7 @@ def run(command = nil) else say "Usage: travis COMMAND ...\n\nAvailable commands:\n\n" commands.each { |c| say "\t#{color(c.command_name, :command).ljust(22)} #{color(c.description, :info)}" } - say "\nrun `#$0 help COMMAND` for more infos" + say "\nrun `#$0 help COMMAND` for more info" end end diff --git a/spec/client/session_spec.rb b/spec/client/session_spec.rb index 755afa57..595eb8be 100644 --- a/spec/client/session_spec.rb +++ b/spec/client/session_spec.rb @@ -62,7 +62,7 @@ subject.headers['User-Agent'].should include("Ruby #{RUBY_VERSION}") end - it 'allows adding custom infos to the User-Agent' do + it 'allows adding custom info to the User-Agent' do subject.agent_info = "foo" subject.headers['User-Agent'].should include("foo") subject.headers['User-Agent'].should include("Travis/#{Travis::VERSION}") diff --git a/travis.gemspec b/travis.gemspec index 1ba09c41..b8c9fa3a 100644 --- a/travis.gemspec +++ b/travis.gemspec @@ -1,6 +1,6 @@ # Run `rake travis.gemspec` to update the gemspec. Gem::Specification.new do |s| - # general infos + # general info s.name = "travis" s.version = "1.8.13" s.required_ruby_version = ">= 2.3.0"