Fixed using statement in usage section of README.

This commit is contained in:
Tony Bark 2020-12-11 01:46:47 -05:00
parent 30f390f066
commit 55b6135db0

View file

@ -12,7 +12,7 @@ QuickFennec.CST is a library for parsing the CST format.
#r "nuget:CSTNet,1.0.1"
using System;
using System.IO;
using QuickFennec.CST;
using CSTNet;
var file = File.ReadAllText("example.cst");
var example = CaretSeparatedText.Parse(file, 1);