rust-lang-nursery / rust-cookbook

https://rust-lang-nursery.github.io/rust-cookbook
Creative Commons Zero v1.0 Universal
2.25k stars 284 forks source link

Use spaces for CSV in indentation #642

Open djc opened 3 years ago

djc commented 3 years ago

The use of tabs for indentation made the example error due to finding more columns on the indented lines than intended. Use escaped newlines and line continuations to prevent the indentation from being part of the records.