Skip to content

Commit 69329f8

Browse files
committed
Fix some README typos. [doc]
1 parent c0b0ead commit 69329f8

1 file changed

Lines changed: 9 additions & 9 deletions

File tree

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111

1212
## Description
1313

14-
Ruby Test is a universal test harness for Ruby that can be used by any Ruby
15-
test framework. You think of Ruby Test as a *meta* test framework.
14+
Ruby Test is a universal test harness for Ruby developers. It can be used
15+
by any Ruby test framework. You can think of Ruby Test as a *meta test framework*.
1616
Ruby Test defines a straight-forward specification that any test framework
17-
can utilize as it backend. This makes it almost trival to implement new
17+
can utilize as it back-end. This makes it almost trivial to implement new
1818
test frameworks. Ruby Test further allows tests from various frameworks
1919
to all run through a single uniform user interface in a single pass.
2020

@@ -29,7 +29,7 @@ over as a test case with each entry handled in the same manner. All test
2929
objects must respond to `#to_s` so their description can be used in test
3030
reports.
3131

32-
Ruby Test handles assertions via [BRASS](http://rubyworks.github.com/brass)
32+
Ruby Test handles assertions with [BRASS](http://rubyworks.github.com/brass)
3333
compliance. Any raised exception that responds to `#assertion?` in the
3434
affirmative is taken to be a failed assertion rather than simply an error.
3535

@@ -66,13 +66,13 @@ e.g.
6666
The command line tool takes various options, use `-h/--help` to see them.
6767

6868
When running tests, you need to be sure to load in your test framework
69-
or your framework's RubyTest adapter. This is usually done via a helper
69+
or your framework's Ruby Test adapter. This is usually done via a helper
7070
script in the test files, but might also be done via command line options,
7171
e.g.
7272

7373
$ rubytest -r lemon -r ae test/test_*.rb
7474

75-
RubyTest supports [dotopts](http://rubyworks.github.com/dotopts) out of the
75+
Ruby Test supports [dotopts](http://rubyworks.github.com/dotopts) out of the
7676
box, so it easy to setup reusable options. For example, a `.option` file
7777
entry might be:
7878

@@ -105,10 +105,10 @@ requirements does the job and does it well.
105105

106106
## Development
107107

108-
Ruby Test is still a "nuby" gem. Please feel OBLIGATED to help improve it ;-)
108+
Ruby Test is still a bit of a "nuby" gem. Please feel OBLIGATED to help improve it ;-)
109109

110110
Ruby Test is a [Rubyworks](http://rubyworks.github.com) project. If you can't
111-
contribue code, you can still help out by contributing to our development fund.
111+
contribute code, you can still help out by contributing to our development fund.
112112

113113

114114
## Reference Material
@@ -121,7 +121,7 @@ contribue code, you can still help out by contributing to our development fund.
121121

122122
Copyright (c) 2011 Rubyworks
123123

124-
Made available according to the terms of the <b>FreeBSD license</b>.
124+
Made available according to the terms of the <b>BSD-2-Clause</b> license.
125125

126126
See LICENSE.txt for details.
127127

0 commit comments

Comments
 (0)