From 07ac122ef87a7d808216e88a3088569f157fd7e3 Mon Sep 17 00:00:00 2001 From: Jay Bazuzi Date: Mon, 21 Dec 2015 23:40:44 -0800 Subject: [PATCH] Fix spelling error in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c1a93cc..1d16803 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ IronMeta is available on [NuGet](https://www.nuget.org/packages/IronMeta/). To Once you have installed the NuGet package, add a grammar file with the extension .ironmeta to your project. Then generate a C# class from it. You can do this in two ways: -- You can install a [Visual Studio extension](https://visualstudiogallery.msdn.microsoft.com/73263c7c-319f-4f9e-a05a-b493094a4eb0) that provides a custom tool for generating C# code from IronMeta files. You must set the "Custom Tool" property of your IronMeta file to be `IronMetaGenerator`. Then the C# code will be generated whenever your grammer file changes. Syntax errors will appear in your Error List. +- You can install a [Visual Studio extension](https://visualstudiogallery.msdn.microsoft.com/73263c7c-319f-4f9e-a05a-b493094a4eb0) that provides a custom tool for generating C# code from IronMeta files. You must set the "Custom Tool" property of your IronMeta file to be `IronMetaGenerator`. Then the C# code will be generated whenever your grammar file changes. Syntax errors will appear in your Error List. - A command-line program `IronMeta.exe` is included in the NuGet package, in the `tools` directory. The program takes the following arguments: - `-o {output}` (optional): Specify the output file name (defaults to `{input}_.g.cs`). - `-n {namespace}` (optional): Specify the namespace to use for the generated parser (defaults to the name of the directory the input file is in).