Skip to content

Commit

Permalink
website: fix path for spellchecking and correct errors (#7790)
Browse files Browse the repository at this point in the history
  • Loading branch information
tgross committed Apr 23, 2020
1 parent 3a5cfda commit 3418758
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion GNUmakefile
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ check: ## Lint the source code
@golangci-lint run -j 1

@echo "==> Spell checking website..."
@misspell -error -source=text website/source/
@misspell -error -source=text website/pages/

@echo "==> Check proto files are in-sync..."
@$(MAKE) proto
Expand Down
4 changes: 2 additions & 2 deletions website/pages/docs/job-specification/scaling.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ job "example" {

## `scaling` Parameters

- `min` - <code>(int: nil)</code> - The minimum acceptible count for the task group.
- `min` - <code>(int: nil)</code> - The minimum acceptable count for the task group.
This should be honored by the external autoscaler. It will also be honored by Nomad
during job updates and scaling operations. Defaults to the specified task group [count][].

- `max` - <code>(int: &lt;required&gt;)</code> - The maximum acceptible count for the task group.
- `max` - <code>(int: &lt;required&gt;)</code> - The maximum acceptable count for the task group.
This should be honored by the external autoscaler. It will also be honored by Nomad
during job updates and scaling operations.

Expand Down
2 changes: 1 addition & 1 deletion website/pages/docs/job-specification/volume.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ the [volume_mount][volume_mount] stanza in the `task` configuration.
- `source` `(string: <required>)` - The name of the volume to
request. When using `host_volume`'s this should match the published
name of the host volume. When using `csi` volumes, this should match
the ID of the registed volume.
the ID of the registered volume.

- `read_only` `(bool: false)` - Specifies that the group only requires
read only access to a volume and is used as the default value for
Expand Down

0 comments on commit 3418758

Please sign in to comment.