From 50a80f42ad3b415717ab59bb09c54a2069332678 Mon Sep 17 00:00:00 2001 From: Travis Parks Date: Fri, 3 May 2013 09:35:04 -0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d0b78bc..78667a7 100644 --- a/README.md +++ b/README.md @@ -44,7 +44,7 @@ Each format item takes the following form and consists of the following componen The matching braces are required. Notice that they are double curly braces! The alignment and the format strings are optional and match the syntax accepted by `String.Format`. Refer to [String.Format](http://msdn.microsoft.com/en-us/library/system.string.format.aspx)'s documentation to learn more about the standard and custom format strings. ### Placeholder Scope -The indentifier is used to find a property with a matching name. If you want to print out the object itself, you can use the special identifier `this`. +The identifier is used to find a property with a matching name. If you want to print out the object itself, you can use the special identifier `this`. FormatCompiler compiler = new FormatCompiler(); Generator generator = compiler.Compiler("Hello, {{this}}!!!");