Skip to content

Commit 77d5d3c

Browse files
authored
Fix some typos in docs (#860)
1 parent 74abad1 commit 77d5d3c

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ guidelines](.github/CONTRIBUTING.md).
6464
### Local development
6565

6666
Local development tasks, like firing up a repl, running the tests or locally installing cider-nrepl are offered by our Makefile.
67-
We recommend using it, since some aspects can be intrincate to newcomers.
67+
We recommend using it, since some aspects can be intricate to newcomers.
6868

6969
These are its main tasks for local development:
7070

doc/modules/ROOT/pages/internals.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ nREPL convention to be supplied in the same file where the middleware is defined
1212

1313
== Dealing with unhandled exception
1414

15-
Even though nREPL requests are asychronous in their nature, some editors might be forced
15+
Even though nREPL requests are asynchronous in their nature, some editors might be forced
1616
to wait for the response of a request. This is obviously going to result in lock-up in
1717
case of an unhandled exception, that's why `cider-nrepl` introduced the concept of
1818
a "safe transport" that does some reasonable handling of such errors.

doc/modules/ROOT/pages/nrepl-api/ops.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Returns::
267267

268268
=== `debug-instrumented-defs`
269269

270-
Return an alist of definitions currently thought to be instrumented on each namespace. Due to Clojure's versatility, this could include false postives, but there will not be false negatives. Instrumentations inside protocols are not listed.
270+
Return an alist of definitions currently thought to be instrumented on each namespace. Due to Clojure's versatility, this could include false positives, but there will not be false negatives. Instrumentations inside protocols are not listed.
271271

272272
Required parameters::
273273
{blank}
@@ -309,7 +309,7 @@ Required parameters::
309309
{blank}
310310

311311
Optional parameters::
312-
* `:class` A Java class. If ``:ns`` is passed, it will be used for fully-qualifiying the class, if necessary.
312+
* `:class` A Java class. If ``:ns`` is passed, it will be used for fully-qualifying the class, if necessary.
313313
* `:context` A Compliment completion context, just like the ones already passed for the "complete" op,
314314
with the difference that the symbol at point should be entirely replaced by "\__prefix__".
315315
For Java interop queries, it helps inferring the precise type of the object the ``:sym`` or ``:member`` refers to,
@@ -446,7 +446,7 @@ Required parameters::
446446
{blank}
447447

448448
Optional parameters::
449-
* `:class` A Java class. If ``:ns`` is passed, it will be used for fully-qualifiying the class, if necessary.
449+
* `:class` A Java class. If ``:ns`` is passed, it will be used for fully-qualifying the class, if necessary.
450450
* `:context` A Compliment completion context, just like the ones already passed for the "complete" op,
451451
with the difference that the symbol at point should be entirely replaced by "\__prefix__".
452452
For Java interop queries, it helps inferring the precise type of the object the ``:sym`` or ``:member`` refers to,
@@ -811,7 +811,7 @@ Returns::
811811

812812
=== `is-var-profiled`
813813

814-
Reports wheth symbol is currently profiled.
814+
Reports whether symbol is currently profiled.
815815

816816
Required parameters::
817817
* `:ns` The current namespace
@@ -1160,7 +1160,7 @@ Returns::
11601160
Sets maximum sample count. Returns new max-sample-count.
11611161

11621162
Required parameters::
1163-
* `:max-samples` Maxiumum samples to collect for any single var.
1163+
* `:max-samples` Maximum samples to collect for any single var.
11641164

11651165

11661166
Optional parameters::

doc/modules/ROOT/pages/usage.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ under `:repl-options`.
6262

6363
Boot users can configure the injected middleware by either specifying
6464
it on the command line through the `cider.tasks/add-middleware` task
65-
(the lenghty command below will include the `apropos` and `version`
65+
(the lengthy command below will include the `apropos` and `version`
6666
functionality):
6767

6868
----

src/cider/nrepl.clj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ Depending on the type of the return value of the evaluation this middleware may
233233
{:doc "Initialize the debugger so that `breakpoint` works correctly. This usually does not respond immediately. It sends a response when a breakpoint is reached or when the message is discarded."
234234
:requires {"id" "A message id that will be responded to when a breakpoint is reached."}}
235235
"debug-instrumented-defs"
236-
{:doc "Return an alist of definitions currently thought to be instrumented on each namespace. Due to Clojure's versatility, this could include false postives, but there will not be false negatives. Instrumentations inside protocols are not listed."
236+
{:doc "Return an alist of definitions currently thought to be instrumented on each namespace. Due to Clojure's versatility, this could include false positives, but there will not be false negatives. Instrumentations inside protocols are not listed."
237237
:returns {"status" "done"
238238
"list" "The alist of (NAMESPACE . VARS) that are thought to be instrumented."}}
239239
"debug-middleware"
@@ -278,7 +278,7 @@ Depending on the type of the return value of the evaluation this middleware may
278278
with the difference that the symbol at point should be entirely replaced by \"__prefix__\".
279279
For Java interop queries, it helps inferring the precise type of the object the `:sym` or `:member` refers to,
280280
making the results more accurate (and less numerous)."
281-
"class" "A Java class. If `:ns` is passed, it will be used for fully-qualifiying the class, if necessary."
281+
"class" "A Java class. If `:ns` is passed, it will be used for fully-qualifying the class, if necessary."
282282
"member" "A Java class member."
283283
"var-meta-allowlist" "The metadata keys from vars to be returned. Currently only affects `:clj`.
284284
Defaults to the value of `orchard.meta/var-meta-allowlist`.
@@ -578,7 +578,7 @@ if applicable, and re-render the updated value."
578578
:requires {"ns" "The current namespace"}
579579
:returns {"status" "Done"
580580
"value" "'profiled' if profiling enabled, 'unprofiled' if disabled"}}
581-
"is-var-profiled" {:doc "Reports wheth symbol is currently profiled."
581+
"is-var-profiled" {:doc "Reports whether symbol is currently profiled."
582582
:requires {"sym" "The symbol to check"
583583
"ns" "The current namespace"}
584584
:returns {"status" "Done"
@@ -588,7 +588,7 @@ if applicable, and re-render the updated value."
588588
:returns {"status" "Done"
589589
"value" "String representing number of max-sample-count"}}
590590
"set-max-samples" {:doc "Sets maximum sample count. Returns new max-sample-count."
591-
:requires {"max-samples" "Maxiumum samples to collect for any single var."}
591+
:requires {"max-samples" "Maximum samples to collect for any single var."}
592592
:returns {"status" "Done"
593593
"value" "String representing number of max-sample-count"}}
594594
"toggle-profile" {:doc "Toggle profiling of a given var."

0 commit comments

Comments
 (0)