Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

syntax fix: projects -> project's where applicable #567

Merged
merged 1 commit into from
Apr 7, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ The [travis gem](https://rubygems.org/gems/travis) includes both a [command line
* [`encrypt`](#encrypt) - encrypts values for the .travis.yml
* [`encrypt-file`](#encrypt-file) - encrypts a file and adds decryption steps to .travis.yml
* [`env`](#env) - show or modify build environment variables
* [`history`](#history) - displays a projects build history
* [`history`](#history) - displays a project's build history
* [`init`](#init) - generates a .travis.yml and enables the project
* [`logs`](#logs) - streams test logs
* [`open`](#open) - opens a build or job in the browser
Expand Down Expand Up @@ -882,7 +882,7 @@ $ travis env unset foo bar

#### `history`

Displays a projects build history.
Displays a project's build history.
Usage: travis history [options]
-h, --help Display help
-i, --[no-]interactive be interactive and colorful
Expand Down
2 changes: 1 addition & 1 deletion lib/travis/cli/history.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
module Travis
module CLI
class History < RepoCommand
description "displays a projects build history"
description "displays a project's build history"

on('-a', '--after BUILD', 'Only show history after a given build number')
on('-p', '--pull-request NUMBER', 'Only show history for the given Pull Request')
Expand Down