summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBen Boeckel <mathstuf@users.noreply.github.com>2022-10-29 11:56:09 +0000
committerGitHub <noreply@github.com>2022-10-29 20:56:09 +0900
commit28cff80652f31d72807493487e92f32fe81648bd (patch)
tree2714193a64bd5e075c2f2ea0d11c1f655a144bd4 /doc
parente4b20544082ba019d8095cbc24ffab43b15e8fc0 (diff)
downloadale-28cff80652f31d72807493487e92f32fe81648bd.zip
codespell: fix spelling errors picked out by `codespell` (#4343)
Diffstat (limited to 'doc')
-rw-r--r--doc/ale-java.txt2
-rw-r--r--doc/ale-python.txt2
-rw-r--r--doc/ale-typescript.txt2
-rw-r--r--doc/ale-verilog.txt2
-rw-r--r--doc/ale.txt4
5 files changed, 6 insertions, 6 deletions
diff --git a/doc/ale-java.txt b/doc/ale-java.txt
index fa38fd3a..d9e85d3b 100644
--- a/doc/ale-java.txt
+++ b/doc/ale-java.txt
@@ -173,7 +173,7 @@ g:ale_java_javalsp_config *g:ale_java_javalsp_config*
Type: |Dictionary|
Default: `{}`
-The javalsp linter automatically detects external depenencies for Maven and
+The javalsp linter automatically detects external dependencies for Maven and
Gradle projects. In case the javalsp fails to detect some of them, you can
specify them setting a dictionary to |g:ale_java_javalsp_config| variable.
>
diff --git a/doc/ale-python.txt b/doc/ale-python.txt
index d5d01dc5..82188e4c 100644
--- a/doc/ale-python.txt
+++ b/doc/ale-python.txt
@@ -979,7 +979,7 @@ g:ale_python_pylsp_options *g:ale_python_pylsp_options
let g:ale_python_pylsp_executable = 'python3'
let g:ale_python_pylsp_options = '-m pylsp'
- An example stragety for installing `pylsp`:
+ An example strategy for installing `pylsp`:
`python3 -m pip install --user pylsp`
diff --git a/doc/ale-typescript.txt b/doc/ale-typescript.txt
index 788a7a5c..4a993793 100644
--- a/doc/ale-typescript.txt
+++ b/doc/ale-typescript.txt
@@ -29,7 +29,7 @@ g:ale_deno_lsp_project_root *g:ale_deno_lsp_project_root*
executing the following steps in the given order:
1. Find an ancestor directory containing a tsconfig.json.
- 2. Find an ancestory directory containing a .git folder.
+ 2. Find an ancestor directory containing a .git folder.
3. Use the directory of the current buffer (if the buffer was opened from
a file).
diff --git a/doc/ale-verilog.txt b/doc/ale-verilog.txt
index 11e988bb..611ed2f9 100644
--- a/doc/ale-verilog.txt
+++ b/doc/ale-verilog.txt
@@ -134,7 +134,7 @@ g:ale_verilog_yosys_options *g:ale_verilog_yosys_options*
Default: `'-Q -T -p ''read_verilog %s'''`
This variable can be changed to modify the flags/options passed to 'yosys'.
- By default, Yosys is an interative program. To obtain linting functionality,
+ By default, Yosys is an interactive program. To obtain linting functionality,
the `'read_verilog'` command is used.
diff --git a/doc/ale.txt b/doc/ale.txt
index b17e2e42..10799fe2 100644
--- a/doc/ale.txt
+++ b/doc/ale.txt
@@ -4558,7 +4558,7 @@ ALEFixPost *ALEFixPost-autocmd*
These |User| autocommands are triggered before and after every lint or fix
cycle. They can be used to update statuslines, send notifications, etc.
The autocmd commands are run with |:silent|, so |:unsilent| is required for
- echoing messges.
+ echoing messages.
For example to change the color of the statusline while the linter is
running:
@@ -4591,7 +4591,7 @@ ALEJobStarted *ALEJobStarted-autocmd*
ALELSPStarted *ALELSPStarted-autocmd*
*ALELSPStarted*
- This |User| autocommand is trigged immediately after an LSP connection is
+ This |User| autocommand is triggered immediately after an LSP connection is
successfully initialized. This provides a way to perform any additional
initialization work, such as setting up buffer-level mappings.