Skip to content

Commit

Permalink
README.md: fix grammar error (#136)
Browse files Browse the repository at this point in the history
"it's" is short for "it is," but the use in this sentence is as a
possessive - something belonging to "it" - hence, "its" is correct.
  • Loading branch information
Kevin Burke authored and Josh Gross committed Dec 23, 2019
1 parent e223b0a commit a631fad
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ on: push
jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1

Expand All @@ -49,14 +49,14 @@ jobs:
- name: Generate Prime Numbers
if: steps.cache-primes.outputs.cache-hit != 'true'
run: /generate-primes.sh -d prime-numbers

- name: Use Prime Numbers
run: /primes.sh -d prime-numbers
```
## Implementation Examples
Every programming language and framework has it's own way of caching.
Every programming language and framework has its own way of caching.
See [Examples](examples.md) for a list of `actions/cache` implementations for use with:

Expand Down Expand Up @@ -93,7 +93,7 @@ steps:
with:
path: path/to/dependencies
key: ${{ runner.os }}-${{ hashFiles('**/lockfiles') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: /install.sh
Expand Down

0 comments on commit a631fad

Please sign in to comment.