From e58a50ab5ca6c21af933f992e0d06421ea995d07 Mon Sep 17 00:00:00 2001 From: Brian Takita Date: Fri, 19 Aug 2011 17:03:35 -0700 Subject: [PATCH] Fixed typo. --- README.rdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.rdoc b/README.rdoc index ec1524c4..ed741999 100644 --- a/README.rdoc +++ b/README.rdoc @@ -222,7 +222,7 @@ Allows stubs to be added to all instances of a class. It works by binding to met This allows all instances (excluding instances with the method redefined in the eigenclass) to get the change. Due to Ruby runtime limitations, mocks will not work as expected. It's not obviously feasible (without an ObjectSpace lookup) to support all of RR's methods (such as mocking). -ObjectSpace is not readily supported in jRuby, since it causes general slowness in the intreperter. +ObjectSpace is not readily supported in jRuby, since it causes general slowness in the interpreter. I'm of the opinion that test speed is more important than having mocks on all instances of a class. If there is another solution, I'd be willing to add it.