Skip to content
This repository was archived by the owner on Nov 2, 2020. It is now read-only.

Commit 858506f

Browse files
committed
Tiny formatting fix.
1 parent 137c021 commit 858506f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,15 +91,16 @@ To configure your tweaks, you need a way to show the configuration UI. There's t
9191
```
9292

9393
- You can present a `FBTweakViewController` from anywhere in your app. Be sure to restrict the activation UI to debug builds!
94+
9495
```objective-c
95-
- (void) showTweaks {
96+
- (void)showTweaks {
9697
FBTweakViewController *tweakVC = [[FBTweakViewController alloc] initWithStore:[FBTweakStore sharedInstance]];
9798
tweakVC.tweaksDelegate = self;
9899
// Assuming this is in the app delegate
99100
[self.window.rootViewController presentViewController:tweakVC animated:YES completion:nil];
100101
}
101102

102-
- (void) tweakViewControllerPressedDone:(FBTweakViewController *)tweakViewController {
103+
- (void)tweakViewControllerPressedDone:(FBTweakViewController *)tweakViewController {
103104
[tweakViewController dismissViewControllerAnimated:YES completion:NULL];
104105
}
105106
```

0 commit comments

Comments
 (0)