Fix spelling (#7405)

This commit is contained in:
John Bampton 2023-03-01 04:05:30 +10:00 committed by GitHub
parent 966adfb799
commit c43fbe4ebd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
Notes: git 2023-02-28 18:05:50 +00:00
Merged-By: k0kubun <takashikkbn@gmail.com>
5 changed files with 5 additions and 5 deletions

View file

@ -1751,7 +1751,7 @@ rb_data_s_def(int argc, VALUE *argv, VALUE klass)
* Measure.new(amount: 1, unit: 'km')
* #=> #<data Measure amount=1, unit="km">
*
* # Alternative shorter intialization with []
* # Alternative shorter initialization with []
* Measure[1, 'km']
* #=> #<data Measure amount=1, unit="km">
* Measure[amount: 1, unit: 'km']