diff options
author | Yudai Takada <[email protected]> | 2022-11-21 14:07:18 +0900 |
---|---|---|
committer | GitHub <[email protected]> | 2022-11-20 21:07:18 -0800 |
commit | 29e6d97517bbd4dcc540464c8473172232f3e228 (patch) | |
tree | 80716a0b7b7e8e6c96ceacf9ab1e7b2dcdc22c27 /ext/coverage | |
parent | d8601621edcf29e3323b90dcf04b774edd9fb45e (diff) |
Fix typos (#6775)
* s/Innteger/Integer/
* s/diretory/directory/
* s/Bufer/Buffer/
* s/defalt/default/
* s/covearge/coverage/
Notes
Notes:
Merged-By: k0kubun <[email protected]>
Diffstat (limited to 'ext/coverage')
-rw-r--r-- | ext/coverage/coverage.c | 4 |
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 * |