You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/modules/ROOT/pages/nrepl-api/ops.adoc
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -267,7 +267,7 @@ Returns::
267
267
268
268
=== `debug-instrumented-defs`
269
269
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.
271
271
272
272
Required parameters::
273
273
{blank}
@@ -309,7 +309,7 @@ Required parameters::
309
309
{blank}
310
310
311
311
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.
313
313
* `:context` A Compliment completion context, just like the ones already passed for the "complete" op,
314
314
with the difference that the symbol at point should be entirely replaced by "\__prefix__".
315
315
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::
446
446
{blank}
447
447
448
448
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.
450
450
* `:context` A Compliment completion context, just like the ones already passed for the "complete" op,
451
451
with the difference that the symbol at point should be entirely replaced by "\__prefix__".
452
452
For Java interop queries, it helps inferring the precise type of the object the ``:sym`` or ``:member`` refers to,
@@ -811,7 +811,7 @@ Returns::
811
811
812
812
=== `is-var-profiled`
813
813
814
-
Reports wheth symbol is currently profiled.
814
+
Reports whether symbol is currently profiled.
815
815
816
816
Required parameters::
817
817
* `:ns` The current namespace
@@ -1160,7 +1160,7 @@ Returns::
1160
1160
Sets maximum sample count. Returns new max-sample-count.
1161
1161
1162
1162
Required parameters::
1163
-
* `:max-samples` Maxiumum samples to collect for any single var.
1163
+
* `:max-samples` Maximum samples to collect for any single var.
Copy file name to clipboardExpand all lines: src/cider/nrepl.clj
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -233,7 +233,7 @@ Depending on the type of the return value of the evaluation this middleware may
233
233
{: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."
234
234
:requires {"id""A message id that will be responded to when a breakpoint is reached."}}
235
235
"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."
237
237
:returns {"status""done"
238
238
"list""The alist of (NAMESPACE . VARS) that are thought to be instrumented."}}
239
239
"debug-middleware"
@@ -278,7 +278,7 @@ Depending on the type of the return value of the evaluation this middleware may
278
278
with the difference that the symbol at point should be entirely replaced by \"__prefix__\".
279
279
For Java interop queries, it helps inferring the precise type of the object the `:sym` or `:member` refers to,
280
280
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."
282
282
"member""A Java class member."
283
283
"var-meta-allowlist""The metadata keys from vars to be returned. Currently only affects `:clj`.
284
284
Defaults to the value of `orchard.meta/var-meta-allowlist`.
@@ -578,7 +578,7 @@ if applicable, and re-render the updated value."
578
578
:requires {"ns""The current namespace"}
579
579
:returns {"status""Done"
580
580
"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."
582
582
:requires {"sym""The symbol to check"
583
583
"ns""The current namespace"}
584
584
:returns {"status""Done"
@@ -588,7 +588,7 @@ if applicable, and re-render the updated value."
588
588
:returns {"status""Done"
589
589
"value""String representing number of max-sample-count"}}
590
590
"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."}
592
592
:returns {"status""Done"
593
593
"value""String representing number of max-sample-count"}}
594
594
"toggle-profile" {:doc"Toggle profiling of a given var."
0 commit comments