Skip to content

Commit 781edbd

Browse files
committed
misc: fix spelling
1 parent 93a7e5e commit 781edbd

11 files changed

Lines changed: 19 additions & 19 deletions

File tree

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ things in mind before submitting your pull request:
1212
- Create a branch which is dedicated to your change
1313
- Test your changes before creating a pull request (`rake test`)
1414
- If possible write a test case which confirms your change
15-
- Don't mix several features or bug-fixes in one pull request
15+
- Don't mix several features or bugfixes in one pull request
1616
- Create a meaningful commit message
1717
- Explain your change (i.e. with a link to the issue you are fixing)
1818
- Use mrbgem to provide non ISO features (classes, modules and methods) unless

NEWS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ NEWS
3535
# Build & Configuration
3636

3737
- New Build Target: `test:run:serial`, `test:run:serial:lib`, `test:run:serial:bin` ([#6423](https://github.com/mruby/mruby/pull/6423))
38-
- New Platform: Playstation Portable ([#6022](https://github.com/mruby/mruby/pull/6465))
38+
- New Platform: PlayStation Portable ([#6022](https://github.com/mruby/mruby/pull/6465))
3939
- New Platform: emscripten ([#6487](https://github.com/mruby/mruby/pull/6487))
4040
- New Config: no-float (with MRB_NO_FLOAT) ([32200f1](https://github.com/mruby/mruby/commit/32200f1))
4141

@@ -240,7 +240,7 @@ NEWS
240240
- [#6461](https://github.com/mruby/mruby/pull/6461) To create a release package file in draft
241241
- [#6462](https://github.com/mruby/mruby/pull/6462) Properly cast the return value of `memchr()`
242242
- [#6463](https://github.com/mruby/mruby/pull/6463) Add `level` argument to `File.dirname`
243-
- [#6465](https://github.com/mruby/mruby/pull/6465) Add initial playstation portable crossbuild support
243+
- [#6465](https://github.com/mruby/mruby/pull/6465) Add initial PlayStation portable crossbuild support
244244
- [#6468](https://github.com/mruby/mruby/pull/6468) Fixed missing changes to `IB_FIND_BY_KEY()` parameter names
245245
- [#6469](https://github.com/mruby/mruby/pull/6469) Add more `const` qualifier for `RProc`
246246
- [#6472](https://github.com/mruby/mruby/pull/6472) Moved tests for `Integer#quo`

doc/guides/compile.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ If you need an include path of header file use `search_header_path`:
176176
fail 'iconv.h not found' unless conf.cc.search_header_path 'iconv.h'
177177
```
178178

179-
If you need a full file name of header file use `search_header`:
179+
If you need a full filename of header file use `search_header`:
180180

181181
```ruby
182182
# Searches `iconv.h`.

doc/guides/debugger.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ To invoke the mruby debugger, just type `mrdb`.
5252
To specify the script file:
5353

5454
```bash
55-
$ mrdb [option] file name
55+
$ mrdb [option] filename
5656
```
5757

5858
For example: Debugging sample.rb
@@ -121,7 +121,7 @@ Be aware that the breakpoint command will not check the validity of the class na
121121

122122
You can get the current breakpoint information by the following options.
123123

124-
breakpoint breakpoint number : file name. line number
124+
breakpoint breakpoint number : filename. line number
125125

126126
breakpoint breakpoint number : [class name,] method name
127127

@@ -267,7 +267,7 @@ Example:
267267
```
268268
(sample.rb:1) info breakpoints
269269
Num Type Enb What
270-
1 breakpoint y at sample.rb:3 -> file name,line number
270+
1 breakpoint y at sample.rb:3 -> filename,line number
271271
2 breakpoint n in Sample_class:sample_class_method -> [class:]method name
272272
3 breakpoint y in sample_global_method
273273
```
@@ -301,11 +301,11 @@ When you do not specify both the `first` and `last` options, you will receive th
301301
Example:
302302

303303
```
304-
Specifying file name and first row number
304+
Specifying filename and first row number
305305
sample.rb:1) list sample2.rb:5
306306
```
307307

308-
Specifying the file name and the first and last row number:
308+
Specifying the filename and the first and last row number:
309309

310310
```
311311
(sample.rb:1) list sample2.rb:6,7

doc/guides/mrbgems.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ mruby can be extended with pure Ruby. It is possible to override existing
368368
classes or add new ones in this way. Put all Ruby files into the `mrblib`
369369
directory.
370370

371-
### Pre-Conditions
371+
### Preconditions
372372

373373
none
374374

@@ -400,7 +400,7 @@ mruby codes under `mrblib` directory would be executed after gem init C
400400
function is called. Make sure _mruby script_ depends on _C code_ and
401401
_C code_ doesn't depend on _mruby script_.
402402

403-
### Pre-Conditions
403+
### Preconditions
404404

405405
See C and Ruby example.
406406

doc/mruby3.1.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ For better and faster hash values.
197197

198198
---
199199

200-
# Major bug fixes
200+
# Major bugfixes
201201

202202
- Fix infinite recursive call bugs in integer division [98799aa6](https://github.com/mruby/mruby/commit/98799aa6)
203203
- Fix to raise TypeError with super inside instance_eval / class_eval [#5476](https://github.com/mruby/mruby/pull/5476)

doc/mruby3.4.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# Build & Configuration
3333

3434
- New Build Target: `test:run:serial`, `test:run:serial:lib`, `test:run:serial:bin` ([#6423](https://github.com/mruby/mruby/pull/6423))
35-
- New Platform: Playstation Portable ([#6022](https://github.com/mruby/mruby/pull/6465))
35+
- New Platform: PlayStation Portable ([#6022](https://github.com/mruby/mruby/pull/6465))
3636
- New Platform: emscripten ([#6487](https://github.com/mruby/mruby/pull/6487))
3737
- New Config: no-float (with MRB_NO_FLOAT) ([32200f1](https://github.com/mruby/mruby/commit/32200f1))
3838

@@ -237,7 +237,7 @@
237237
- [#6461](https://github.com/mruby/mruby/pull/6461) To create a release package file in draft
238238
- [#6462](https://github.com/mruby/mruby/pull/6462) Properly cast the return value of `memchr()`
239239
- [#6463](https://github.com/mruby/mruby/pull/6463) Add `level` argument to `File.dirname`
240-
- [#6465](https://github.com/mruby/mruby/pull/6465) Add initial playstation portable crossbuild support
240+
- [#6465](https://github.com/mruby/mruby/pull/6465) Add initial PlayStation portable crossbuild support
241241
- [#6468](https://github.com/mruby/mruby/pull/6468) Fixed missing changes to `IB_FIND_BY_KEY()` parameter names
242242
- [#6469](https://github.com/mruby/mruby/pull/6469) Add more `const` qualifier for `RProc`
243243
- [#6472](https://github.com/mruby/mruby/pull/6472) Moved tests for `Integer#quo`

mrbgems/mruby-bigint/README-fgmp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ I hereby place this file and all of FGMP in the public domain.
5050

5151
Thanks to Paul Rouse <par@r-cube.demon.co.uk> for changes to get fgmp
5252
to work on a 286 MS-DOS compiler, the functions mpz_sqrt and
53-
mpz_sqrtrem, plus other general bug fixes.
53+
mpz_sqrtrem, plus other general bugfixes.
5454

5555
Thanks also to Erick Gallesio <eg@kaolin.unice.fr> for a fix
5656
to mpz_init_set_str

mrbgems/mruby-bigint/core/bigint.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* I'm already aware that fgmp is considerably slower than gmp
2020
*
2121
* CREDITS:
22-
* Paul Rouse <par@r-cube.demon.co.uk> - generic bug fixes, mpz_sqrt and
22+
* Paul Rouse <par@r-cube.demon.co.uk> - generic bugfixes, mpz_sqrt and
2323
* mpz_sqrtrem, and modifications to get fgmp to compile on a system
2424
* with int and long of different sizes (specifically MS-DOS,286 compiler)
2525
* Also see the file "notes" included with the fgmp distribution, for

mrbgems/mruby-bin-mruby/tools/mruby/mruby.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -342,7 +342,7 @@ main(int argc, char **argv)
342342
mrb_ccontext_cleanup_local_variables(mrb, c);
343343
}
344344

345-
/* set program file name */
345+
/* set program filename */
346346
mrb_ccontext_filename(mrb, c, cmdline);
347347

348348
/* Load program */

0 commit comments

Comments
 (0)