summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorYudai Takada <13041216+ydah@users.noreply.github.com>2022-11-21 14:07:18 +0900
committerGitHub <noreply@github.com>2022-11-20 21:07:18 -0800
commit29e6d97517bbd4dcc540464c8473172232f3e228 (patch)
tree80716a0b7b7e8e6c96ceacf9ab1e7b2dcdc22c27 /ext
parentd8601621edcf29e3323b90dcf04b774edd9fb45e (diff)
Fix typos (#6775)
* s/Innteger/Integer/ * s/diretory/directory/ * s/Bufer/Buffer/ * s/defalt/default/ * s/covearge/coverage/
Notes
Notes: Merged-By: k0kubun <takashikkbn@gmail.com>
Diffstat (limited to 'ext')
-rw-r--r--ext/coverage/coverage.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/coverage/coverage.c b/ext/coverage/coverage.c
index c8229ae8fe..4578de54e4 100644
--- a/ext/coverage/coverage.c
+++ b/ext/coverage/coverage.c
@@ -131,7 +131,7 @@ rb_coverage_setup(int argc, VALUE *argv, VALUE klass)
* Start/resume the coverage measurement.
*
* Caveat: Currently, only process-global coverage measurement is supported.
- * You cannot measure per-thread covearge. If your process has multiple thread,
+ * You cannot measure per-thread coverage. If your process has multiple thread,
* using Coverage.resume/suspend to capture code coverage executed from only
* a limited code block, may yield misleading results.
*/
@@ -470,7 +470,7 @@ rb_coverage_running(VALUE klass)
* This feature is experimental, so these APIs may be changed in future.
*
* Caveat: Currently, only process-global coverage measurement is supported.
- * You cannot measure per-thread covearge.
+ * You cannot measure per-thread coverage.
*
* = Usage
*