From e9db8c145c41466746db58d97558a630674fc319 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gwendal=20Rou=C3=A9?= Date: Mon, 20 Aug 2012 21:54:35 +0200 Subject: [PATCH] localization.md typo --- Guides/sample_code/localization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Guides/sample_code/localization.md b/Guides/sample_code/localization.md index 0299d902..9dae834b 100644 --- a/Guides/sample_code/localization.md +++ b/Guides/sample_code/localization.md @@ -165,7 +165,7 @@ This looks like a nice way to build our format arguments and the localizable for We'll thus now attach to the `localize` section an object that conforms to *both* the `GRMustacheHelper` and `GRMustacheTemplateDelegate` protocols. As in the previous example, we'll perform a "double-pass" rendering: the first rendering will use the delegate side, build the localizable format string, and fill the format arguments. The second rendering will simply mix the format and the arguments. -Now the `[GRMustacheHelper helperWithBlock:]` is not enough. Let's write a full class: +Now the convenient `[GRMustacheHelper helperWithBlock:]` method is not enough. Let's go for a full class: ```objc @interface LocalizatingHelper : NSObject