Skip to content

Commit bc3369b

Browse files
committed
Minor English fixes
Where correct, use possessive pronoun "its" instead of contraction for "it is"
1 parent 79a5847 commit bc3369b

9 files changed

+10
-10
lines changed

.circleci/config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ jobs:
243243
- crg
244244

245245
# The Main "Build" job. It pulls in assets from previous jobs (the built api docs, pdfs and javascript)
246-
# and puts everything in it's place for a Jekyll build.
246+
# and puts everything in its place for a Jekyll build.
247247
build:
248248
executor:
249249
name: ruby/default

docs/local-development.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Our API is handled in two possible places currently:
136136
**What is Slate?**
137137

138138
Slate is a tool for generating API documentation. Slate works by having a user
139-
clone or fork it's Github Repo, having the user fill in the API spec into a
139+
clone or fork its Github Repo, having the user fill in the API spec into a
140140
`index.html.md` file, and then generating the static documentation using Ruby
141141
(via `bundler`).
142142

jekyll/_archive/build-image-precise.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sitemap: false
88
---
99

1010
<div class="alert alert-danger" markdown="1">
11-
<strong>Warning: </strong>Ubuntu 12.04 has been End-of-Life'd (EOL) by it's maintainer Canonical. Neither Canonical nor CircleCI are maintaining this image. We strongly suggest switching to CircleCI 2.0, or at the very least the [Ubuntu 14.04 image](https://circleci.com/docs/1.0/build-image-trusty/) for CircleCI 1.0. Read our announcement [here](https://circleci.com/blog/ubuntu-12-04-precise-build-image-end-of-life-warning/).
11+
<strong>Warning: </strong>Ubuntu 12.04 has been End-of-Life'd (EOL) by its maintainer Canonical. Neither Canonical nor CircleCI are maintaining this image. We strongly suggest switching to CircleCI 2.0, or at the very least the [Ubuntu 14.04 image](https://circleci.com/docs/1.0/build-image-trusty/) for CircleCI 1.0. Read our announcement [here](https://circleci.com/blog/ubuntu-12-04-precise-build-image-end-of-life-warning/).
1212
</div>
1313

1414
Occasionally, bugs in tests arise because CircleCI's environment differs slightly from your local environment.

jekyll/_cci1/build-image-precise.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ sitemap: false
88
---
99

1010
<div class="alert alert-danger" markdown="1">
11-
<strong>Warning: </strong>Ubuntu 12.04 has been End-of-Life'd (EOL) by it's maintainer Canonical. Neither Canonical nor CircleCI are maintaining this image. We strongly suggest switching to CircleCI 2.0, or at the very least the [Ubuntu 14.04 image](https://circleci.com/docs/1.0/build-image-trusty/) for CircleCI 1.0. Read our announcement [here](https://circleci.com/blog/ubuntu-12-04-precise-build-image-end-of-life-warning/).
11+
<strong>Warning: </strong>Ubuntu 12.04 has been End-of-Life'd (EOL) by its maintainer Canonical. Neither Canonical nor CircleCI are maintaining this image. We strongly suggest switching to CircleCI 2.0, or at the very least the [Ubuntu 14.04 image](https://circleci.com/docs/1.0/build-image-trusty/) for CircleCI 1.0. Read our announcement [here](https://circleci.com/blog/ubuntu-12-04-precise-build-image-end-of-life-warning/).
1212
</div>
1313

1414
Occasionally, bugs in tests arise because CircleCI's environment differs slightly from your local environment.

jekyll/_cci2/build-publish-snap-packages.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The `docker` executor is used here with the [`cibuilds/snapcraft`](https://githu
4646
...
4747
```
4848

49-
On CircleCI, this single command is needed to actually build your snap. This will run Snapcraft, which will then go through all of it's build steps and generate a `.snap` file for you. This file will typically be in the format of `<snap-name>-<snap-version>-<system-arch>.snap`.
49+
On CircleCI, this single command is needed to actually build your snap. This will run Snapcraft, which will then go through all of its build steps and generate a `.snap` file for you. This file will typically be in the format of `<snap-name>-<snap-version>-<system-arch>.snap`.
5050

5151
## Testing
5252

jekyll/_cci2/caching.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Because the second key is less specific than the first, it is more likely that t
9898

9999
Let's walk through how the above cache keys are used in more detail:
100100

101-
Each line in the `keys:` list all manage _one cache_ (each line does **not** correspond to it's own cache). The list of keys {% raw %}(`v1-npm-deps-{{ checksum "package-lock.json" }}`{% endraw %} and `v1-npm-deps-`), in this example, represent a **single** cache. When it comes time to restore the cache, CircleCI first validates the cache based on the first (and most specific) key, and then steps through the other keys looking for any other cache-key changes.
101+
Each line in the `keys:` list all manage _one cache_ (each line does **not** correspond to its own cache). The list of keys {% raw %}(`v1-npm-deps-{{ checksum "package-lock.json" }}`{% endraw %} and `v1-npm-deps-`), in this example, represent a **single** cache. When it comes time to restore the cache, CircleCI first validates the cache based on the first (and most specific) key, and then steps through the other keys looking for any other cache-key changes.
102102

103103
Here, the first key concatenates the checksum of `package-lock.json` file into the string `v1-npm-deps-`; if this file was to change in your commit, CircleCI would see a new cache-key.
104104

jekyll/_cci2/java-oom.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ e.g. `-XX:MaxRAMPercentage=90.0`.
3737
In CircleCI, containers are run using [Nomad](https://www.nomadproject.io).
3838
Nomad does set CGroup memory limits, but doesn't provide enough
3939
CGroup memory information to the container for the JVM to detect the container memory constraints.
40-
This means the JVM will set it's memory as a fraction of the total amount of RAM on the system.
40+
This means the JVM will set its memory as a fraction of the total amount of RAM on the system.
4141
Nomad currently has an [enhancement request](https://github.com/hashicorp/nomad/issues/5376)
4242
open to provide this information. Once that is added, container builds in CircleCI will
4343
automatically pick up their container memory limits.

jekyll/_cci2/jira-plugin.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ The example config below provides a bare `config.yml` illustrating the use of th
4141
```yaml
4242
version: 2.1
4343
orbs: # adds orbs to your configuration
44-
jira: circleci/jira@1.0.5 # invokes the Jira orb, making it's commands accessible
44+
jira: circleci/jira@1.0.5 # invokes the Jira orb, making its commands accessible
4545
workflows:
4646
build:
4747
jobs:
4848
- build:
4949
post-steps:
50-
- jira/notify # Runs the Jira's "notify" commands after a build has finished it's steps.
50+
- jira/notify # Runs the Jira's "notify" commands after a build has finished its steps.
5151
jobs:
5252
build:
5353
docker:

jekyll/_cci2/packagecloud.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ CircleCI users can deploy packages directly to npm registries hosted on packagec
9494

9595
### Configure the Test Job
9696

97-
This job will retrieve the project code, install it's dependencies and run any tests in the NodeJS project:
97+
This job will retrieve the project code, install its dependencies and run any tests in the NodeJS project:
9898

9999
```yaml
100100
jobs:

0 commit comments

Comments
 (0)