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}}!!!");