Skip to content
This repository has been archived by the owner on Mar 24, 2022. It is now read-only.

Commit

Permalink
Fix a typo in a spec description
Browse files Browse the repository at this point in the history
I was perusing some old commits that @onsi had worked on, because, you know,
sometimes you gotta do that, and I found this test had been committed WITH a typo.
Fast forward to current git history, dang, that typo is still there.

Nothing better than fixing typos that have been in your source code for years upon years.

Signed-off-by: Rachel Brindle <rbrindle@pivotal.io>
  • Loading branch information
tjarratt authored and Pivotal committed Mar 7, 2017
1 parent d377d4d commit 1636766
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ - (NSString *)stodgify:(NSString *)string
[Redirectable redirectSelector:@selector(cheekify:) to:@selector(cheekify_original:) andRenameItTo:@selector(cheekify_other:)];
});

it(@"should do nothing when the new selector name (i.e. the argumen to andRenameItTo:) already exists", ^{
it(@"should do nothing when the new selector name (i.e. the argument to andRenameItTo:) already exists", ^{
[Redirectable redirectSelector:@selector(cheekify:) to:@selector(cheekify_new:) andRenameItTo:@selector(stodgify:)];

[redirectable stodgify:@"Herman"] should equal(@"Herman is so stodgy");
Expand Down

0 comments on commit 1636766

Please sign in to comment.