Skip to content

Commit

Permalink
Merge pull request #919 from onlyjob/codespell
Browse files Browse the repository at this point in the history
codespell: minor spelling corrections
  • Loading branch information
dadgar committed Mar 15, 2016
2 parents 8f3bffe + 2e755cd commit 702e0e7
Show file tree
Hide file tree
Showing 9 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion client/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func NewClient(cfg *config.Config) (*Client, error) {

// Initialize the client
if err := c.init(); err != nil {
return nil, fmt.Errorf("failed intializing client: %v", err)
return nil, fmt.Errorf("failed to initialize client: %v", err)
}

// Setup the node
Expand Down
2 changes: 1 addition & 1 deletion command/agent/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ Client Options:
-node-class
Mark this node as a member of a node-class. This can be used to label
similiar node types.
similar node types.
-meta
User specified metadata to associated with the node. Each instance of -meta
Expand Down
2 changes: 1 addition & 1 deletion command/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ job "example" {
attempts = 10
interval = "5m"
# A delay between a task failing and a restart occuring.
# A delay between a task failing and a restart occurring.
delay = "25s"
# Mode controls what happens when a task has restarted "attempts"
Expand Down
4 changes: 2 additions & 2 deletions website/source/docs/agent/config.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -321,12 +321,12 @@ documentation [here](/docs/drivers/index.html)
* `consul.verifyssl`: This option enables SSL verification when the transport
scheme for the Consul API client is `https`. This is set to true by default.
* `driver.whitelist`: A comma seperated list of whitelisted drivers (e.g.
* `driver.whitelist`: A comma separated list of whitelisted drivers (e.g.
"docker,qemu"). If specified, drivers not in the whitelist will be disabled.
If the whitelist is empty, all drivers are fingerprinted and enabled where
applicable.
* `fingerprint.whitelist`: A comma seperated list of whitelisted fingerprinters.
* `fingerprint.whitelist`: A comma separated list of whitelisted fingerprinters.
If specified, fingerprinters not in the whitelist will be disabled. If the
whitelist is empty, all fingerprinters are used.
Expand Down
2 changes: 1 addition & 1 deletion website/source/docs/commands/agent-info.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ description: >
# Command: agent-info

The `agent-info` command dumps metrics and status information of a running
agent. The infomation displayed pertains to the specific agent the CLI
agent. The information displayed pertains to the specific agent the CLI
is connected to. This is useful for troubleshooting and performance monitoring.

## Usage
Expand Down
2 changes: 1 addition & 1 deletion website/source/docs/commands/run.html.md.erb
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The run command requires a single argument, specifying the path to a file
containing a valid [job specification](/docs/jobspec/index.html). This file
will be read and the job will be submitted to Nomad for scheduling.

By default, on sucessful job submission the run command will enter an
By default, on successful job submission the run command will enter an
interactive monitor and display log information detailing the scheduling
decisions and placement information for the provided job. The monitor will
exit after scheduling has finished or failed.
Expand Down
4 changes: 2 additions & 2 deletions website/source/docs/http/system.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ layout: "http"
page_title: "HTTP API: /v1/system/"
sidebar_current: "docs-http-system"
description: |-
The '/1/system/' endpoints are used to for system maintance.
The '/1/system/' endpoints are used to for system maintenance.
---

# /v1/system

The `system` endpoint is used to for system maintance and should not be
The `system` endpoint is used to for system maintenance and should not be
necessary for most users. By default, the agent's local region is used; another
region can be specified using the `?region=` query parameter.

Expand Down
2 changes: 1 addition & 1 deletion website/source/docs/jobspec/index.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,7 @@ The `constraint` object supports the following keys:
* `version` - Specifies a version constraint against the attribute.
This sets the operator to `version` and the `value` to what is
specified. This supports a comma seperated list of constraints,
specified. This supports a comma separated list of constraints,
including the pessimistic operator. See the
[go-version](https://github.com/hashicorp/go-version) repository
for examples.
Expand Down
2 changes: 1 addition & 1 deletion website/source/intro/getting-started/running.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ and shut down:
```

By gracefully leaving, Nomad clients update their status to prevent
futher tasks from being scheduled and to start migrating any tasks that are
further tasks from being scheduled and to start migrating any tasks that are
already assigned. Nomad servers notify their peers they intend to leave.
When a server leaves, replication to that server stops. If a server fails,
replication continues to be attempted until the node recovers. Nomad will
Expand Down

0 comments on commit 702e0e7

Please sign in to comment.