Hi folks
I"m wanting to do a pull request to improve the documentation a little bit - very minor. But I was confronted with this - see image below (source file: https://github.com/JoshClose/CsvHelper/blob/master/docs/writing/index.html)

My suggestion was to add a text writer surrounding it - like this:
c#
using (StreamWriter textWriter = new StreamWriter(drawingType.LayoutsDirectory.FullName))
{
var records = new List<MyClass> { ... };
var csv = new CsvWriter(textWriter);
csv.WriteRecords(records);
}
Not sure how to proceed exactly to update the docs. Advice much appreciated.
CsvHelper/docs are generated. The source is in CsvHelper/docs-src/.
@mbergkvist thank you sir!
Most helpful comment
CsvHelper/docs are generated. The source is in CsvHelper/docs-src/.