File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -478,7 +478,7 @@ impl WriterBuilder {
478
478
}
479
479
}
480
480
481
- /// A already configured CSV writer.
481
+ /// An already configured CSV writer.
482
482
///
483
483
/// A CSV writer takes as input Rust values and writes those values in a valid
484
484
/// CSV format as output.
@@ -518,7 +518,7 @@ struct WriterState {
518
518
header : HeaderState ,
519
519
/// Whether inconsistent record lengths are allowed.
520
520
flexible : bool ,
521
- /// The number of fields writtein in the first record. This is compared
521
+ /// The number of fields written in the first record. This is compared
522
522
/// with `fields_written` on all subsequent records to check for
523
523
/// inconsistent record lengths.
524
524
first_field_count : Option < u64 > ,
@@ -536,7 +536,7 @@ struct WriterState {
536
536
enum HeaderState {
537
537
/// Indicates that we should attempt to write a header.
538
538
Write ,
539
- /// Indicates that writing a header was attempt , and a header was written.
539
+ /// Indicates that writing a header was attempted , and a header was written.
540
540
DidWrite ,
541
541
/// Indicates that writing a header was attempted, but no headers were
542
542
/// written or the attempt failed.
You can’t perform that action at this time.
0 commit comments