From b7690c58b94f77e81bc1b099ca93e47160304a46 Mon Sep 17 00:00:00 2001 From: Yudai Takada Date: Sun, 22 Dec 2024 17:51:09 +0900 Subject: [PATCH] [ruby/strscan] [DOC] Fix typo in documentation (https://github.com/ruby/strscan/pull/129) s/begining/beginning/ https://github.com/ruby/strscan/commit/734b823463 --- doc/strscan/strscan.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/strscan/strscan.md b/doc/strscan/strscan.md index dea87e0d43..1211a687c2 100644 --- a/doc/strscan/strscan.md +++ b/doc/strscan/strscan.md @@ -112,11 +112,11 @@ and a zero-based character position. Each of these methods explicitly sets positions: -| Method | Effect | -|--------------------------|----------------------------------------------------------| -| #reset | Sets both positions to zero (begining of stored string). | -| #terminate | Sets both positions to the end of the stored string. | -| #pos=(new_byte_position) | Sets byte position; adjusts character position. | +| Method | Effect | +|--------------------------|-----------------------------------------------------------| +| #reset | Sets both positions to zero (beginning of stored string). | +| #terminate | Sets both positions to the end of the stored string. | +| #pos=(new_byte_position) | Sets byte position; adjusts character position. | ### Byte Position (Position)