diff --git a/docs/GeneratingBindings.md b/docs/GeneratingBindings.md index a2b0072f..70d06561 100644 --- a/docs/GeneratingBindings.md +++ b/docs/GeneratingBindings.md @@ -77,9 +77,9 @@ void Setup(Driver driver) var options = driver.Options; options.GeneratorKind = GeneratorKind.CSharp; var module = options.AddModule("Sample"); - module.IncludeDirs.Add("C:\Sample\include"); + module.IncludeDirs.Add(@"C:\Sample\include"); module.Headers.Add("Sample.h"); - module.LibraryDirs.Add("C:\Sample\lib"); + module.LibraryDirs.Add(@"C:\Sample\lib"); module.Libraries.Add("Sample.lib"); } ```