summaryrefslogtreecommitdiff
path: root/docs/src/explanations/modules.md
diff options
context:
space:
mode:
authorNick2021-10-02 23:41:00 -0400
committerGitHub2021-10-02 23:41:00 -0400
commit7360c81509420fdf94962abed42cd19de7331619 (patch)
tree17cc05a738bae15c2aaa893a64306c7f6e3f1fd2 /docs/src/explanations/modules.md
parent92f1ace73c85de859082eaa917eaacfce026fdf8 (diff)
Fix typos in documentation (#2141)
Close #2138
Diffstat (limited to 'docs/src/explanations/modules.md')
-rw-r--r--docs/src/explanations/modules.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/src/explanations/modules.md b/docs/src/explanations/modules.md
index f82a14d6..fcdc6020 100644
--- a/docs/src/explanations/modules.md
+++ b/docs/src/explanations/modules.md
@@ -132,7 +132,7 @@ class FooWrapper extends RawModule {
In the example above, the `RawModule` is used to change the reset polarity
of module `SlaveSpi`. Indeed, the reset is active high by default in Chisel
modules, then using `withClockAndReset(clock, !rstn)` we can use an active low
-reset in entire design.
+reset in the entire design.
-The clock is just wired as it, but if needed, `RawModule` can be used in
+The clock is just wired as is, but if needed, `RawModule` can be used in
conjunction with `BlackBox` to connect a differential clock input for example.