Skip to content

"it's" typos in README file #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions README.rdoc
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ intended for reuse by any TDD, BDD or similar system.
* Core extensions are standardized around Ruby Facets.
* But Facets is not a dependency; the extensions are built-in.
* Easily extensible allowing for alternate notations.
* Eats it's own dog food.
* Eats its own dog food.


== SYNOPSIS

AE defines the method +assert+. It's is compatible with the method
as defined by Test::Unit and MiniTest, which verifies truth of a
single argument (and can accept an optional failure message).
AE defines the method +assert+. It is compatible with the method as
defined by Test::Unit and MiniTest, which verifies truth of a single
argument (and can accept an optional failure message).

assert(true)

Expand All @@ -40,11 +40,11 @@ the result of which is likewise verified.

assert{true}

But the real power the AE's +assert+ method lies in it's use
without argument or block. In that case it returns an instance of
+Assertor+. An +Assertor+ is an <i>Assertions Functor</i>, or
<i>Higher-Order Function</i>. It is a function that operates on
another function. With it, we can make assertions like so:
But the real power the AE's +assert+ method lies in its use without
argument or block. In that case it returns an instance of +Assertor+.
An +Assertor+ is an <i>Assertions Functor</i>, or <i>Higher-Order
Function</i>. It is a function that operates on another function.
With it, we can make assertions like so:

x.assert == y

Expand Down