diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html
index b99c55a557..c0d4aa19d4 100644
--- a/docs/_templates/layout.html
+++ b/docs/_templates/layout.html
@@ -61,7 +61,7 @@
{%- if not embedded %}
- {# XXX Sphinx 1.8.0 made this an external js-file, quick fix until we refactor the template to inherert more blocks directly from sphinx #}
+ {# XXX Sphinx 1.8.0 made this an external js-file, quick fix until we refactor the template to inherent more blocks directly from sphinx #}
{%- if sphinx_version_info >= (1, 8) -%}
{%- for scriptfile in script_files %}
{{ js_tag(scriptfile) }}
diff --git a/docs/userguides/clis.md b/docs/userguides/clis.md
index 87fd191ea3..11891dac57 100644
--- a/docs/userguides/clis.md
+++ b/docs/userguides/clis.md
@@ -74,7 +74,7 @@ To specify the network option, use values like:
```
To use default values automatically, omit sections of the choice, but leave the semi-colons for parsing.
-For example, `::test` means use the default ecosystem and network and the `test` provider.
+For example, `::test` means to use the default ecosystem and network and the `test` provider.
Use `ecosystem`, `network`, and `provider` argument names in your command implementation to access their corresponding class instances:
diff --git a/docs/userguides/console.md b/docs/userguides/console.md
index 211c5aa7ab..2e8969de42 100644
--- a/docs/userguides/console.md
+++ b/docs/userguides/console.md
@@ -137,7 +137,7 @@ Commands:
cache Query from caching database
compile Compile select contract source files
console Load the console
- init Initalize an ape project
+ init Initialize an ape project
networks Manage networks
plugins Manage ape plugins
run Run scripts from the `scripts/` folder
diff --git a/docs/userguides/contracts.md b/docs/userguides/contracts.md
index c4883da758..c13861aea3 100644
--- a/docs/userguides/contracts.md
+++ b/docs/userguides/contracts.md
@@ -79,7 +79,7 @@ Simply copy your Python logic into an Ape script and run it via:
ape run
```
-Learn how to do this and scripting in its entirity by reviewing [the scripting user-guide](./scripts.html).
+Learn how to do this and scripting in its entirety by reviewing [the scripting user-guide](./scripts.html).
**There is no root `ape` command to deploy contracts; only the scripting-system, the `console`, or merely using Ape as a Python library**.