Skip to content

Commit

Permalink
Fix README Whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
Benjamin Reed committed Jan 8, 2015
1 parent 08aef6b commit c1386f1
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1037,6 +1037,7 @@ Projects may include several configurations. However, Quick does not make any
guarantee about the order in which they are executed.
### Adding Global Before and After Filters
Similar to `beforeEach()` and `afterEach()` functions in QuickSpec(s), global
filters can be applied to all tests. For example, a computed value may need to
be reset before each test case. In the following case, it is assumed that the
Expand Down Expand Up @@ -1067,7 +1068,7 @@ class FinConfiguration: QuickConfiguration {

QuickConfigurationBegin(FinConfiguration)

+ (void) configure:(Configuration *)configuration {
+ (void)configure:(Configuration *)configuration {
[configuration beforeEach:^{
Dorsal *fin = [Dorsal sharedFin];
fin.height = 0;
Expand Down Expand Up @@ -1107,7 +1108,7 @@ class Fin2Configuration: QuickConfiguration {

QuickConfigurationBegin(Fin2Configuration)

+ (void) configure:(Configuration *)configuration {
+ (void)configure:(Configuration *)configuration {
[configuration beforeEachWithMetadata:^(ExampleMetadata *data) {
// work with metadata
}];
Expand Down

0 comments on commit c1386f1

Please sign in to comment.