Skip to content

Commit 28dc01e

Browse files
committed
docs: Fixed minor typos in readme files
1 parent 041d359 commit 28dc01e

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

toys-core/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ executable using Toys-Core.
2222
It assumes basic familiarity with Toys, so, if you have not done so, I
2323
recommend first walking through the tutorial in the
2424
[Toys README](https://dazuma.github.io/toys/gems/toys/latest). It also assumes
25-
you are running a unix-like system such as Linux or macOS. Some commands might
25+
you are running a Unix-like system such as Linux or macOS. Some commands might
2626
need to be modified if you're running on Windows.
2727

2828
### Install Toys-Core
@@ -37,7 +37,7 @@ dependency.
3737
### Create a new executable
3838

3939
We'll start by creating an executable Ruby script. Using your favorite text
40-
editor, create new a file called `mycmd` with the following contents:
40+
editor, create a new file called `mycmd` with the following contents:
4141

4242
#!/usr/bin/env ruby
4343

@@ -237,8 +237,8 @@ no longer present.
237237

238238
We've also omitted the middleware that provides default execution behavior
239239
(i.e. displaying the help screen) when there is no `run` method. Now, since we
240-
haven't defined a toplevel `run` method in this last example, invoking the root
241-
tool will cause an error:
240+
haven't defined a top-level `run` method in this last example, invoking the
241+
root tool will cause an error:
242242

243243
$ ./mycmd
244244

@@ -276,7 +276,7 @@ directory, run:
276276
$ toys install
277277

278278
Once the gem has successfully installed, you can run the executable, which
279-
Rubygems should have added to your path. (Note: if you are using a ruby
279+
RubyGems should have added to your path. (Note: if you are using a ruby
280280
installation manager, you may need to "rehash" or "reshim" to gain access to
281281
the executable.)
282282

@@ -308,7 +308,7 @@ Try it out now. From the `examples/multi-file-gem` directory, run:
308308
$ toys install
309309

310310
Once the gem has successfully installed, you can run the executable, which
311-
Rubygems should have added to your path. (Note: if you are using a ruby
311+
RubyGems should have added to your path. (Note: if you are using a ruby
312312
installation manager, you may need to "rehash" or "reshim" to gain access to
313313
the executable.)
314314

@@ -334,7 +334,7 @@ templates, and middleware, in the
334334
[Toys-Core User Guide](https://dazuma.github.io/toys/gems/toys-core/latest/file.guide.html).
335335

336336
Detailed usage information can be found in the
337-
[class reference documentation](https://dazuma.github.io/toys/gems/toys-core/lateset/Toys.html)
337+
[class reference documentation](https://dazuma.github.io/toys/gems/toys-core/latest/Toys.html)
338338

339339
## System requirements
340340

toys-release/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ based on semantic versioning, and supports fine tuning and approval of releases
77
using GitHub pull requests.
88

99
Out of the box, Toys-Release knows how to tag GitHub releases, build and push
10-
gems to Rubygems, and build and publish documentation to gh-pages. You can also
10+
gems to RubyGems, and build and publish documentation to gh-pages. You can also
1111
customize the build pipeline and many aspects of its behavior.
1212

1313
## Description
@@ -62,11 +62,11 @@ by closing the pull request without merging.
6262
Toys-Release requires Ruby 2.7 or later, and Toys 0.17 or later. We recommend
6363
the latest version of the standard C implementation of Ruby. (JRuby or
6464
TruffleRuby _may_ work, but are unsupported.) The Ruby provided by the standard
65-
setup-ruby GitHub Action is sufficient.
65+
`setup-ruby` GitHub Action is sufficient.
6666

6767
## License
6868

69-
Copyright 2019-2025 Daniel Azuma and the Toys contributors
69+
Copyright 2025 Daniel Azuma and the Toys contributors
7070

7171
Permission is hereby granted, free of charge, to any person obtaining a copy
7272
of this software and associated documentation files (the "Software"), to deal

toys/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ Install the **toys** gem using:
2525

2626
$ gem install toys
2727

28-
This installs the `toys` executable, along with some builtin tools and
28+
This installs the `toys` executable, along with some built-in tools and
2929
libraries. You can run the executable immediately:
3030

3131
$ toys
3232

3333
This displays overall help for Toys. If you have `less` installed, Toys will
3434
use it to display the help screen. Press `q` to exit.
3535

36-
You may notice that the help screen lists some tools that are preinstalled.
36+
You may notice that the help screen lists some tools that are pre-installed.
3737
Let's run one of them:
3838

3939
$ toys system version
@@ -311,7 +311,7 @@ completion for your shell.
311311
Toys can also be used to share scripts. For example, it can be used instead of
312312
Rake to provide build and test scripts for a project. Unlike Rake tasks,
313313
scripts written for Toys can be invoked and passed arguments and flags using
314-
familiar unix command line conventions. The Toys github repo itself comes with
314+
familiar Unix command line conventions. The Toys GitHub repo itself comes with
315315
Toys scripts instead of Rakefiles.
316316

317317
## System requirements

0 commit comments

Comments
 (0)