Skip to content

Commit fcd5098

Browse files
committed
Fix some comments
1 parent d646abd commit fcd5098

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/chunk.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ impl Chunk {
5151
}
5252
}
5353

54-
/// Create a new chunk with the given write settings.
54+
/// Create a new chunk with the given settings.
5555
pub fn with_settings(settings: Settings) -> Self {
5656
let mut chunk = Self::new();
5757
chunk.settings = settings;

src/content.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ impl Content {
1818
Self::with_capacity(1024)
1919
}
2020

21-
/// Create a new content stream with the given write settings.
21+
/// Create a new content stream with the given settings.
2222
pub fn with_settings(settings: Settings) -> Self {
2323
let mut content = Self::new();
2424
content.settings = settings;

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ impl Pdf {
229229
Self::with_capacity(8 * 1024)
230230
}
231231

232-
/// Create a new PDF with the given write settings.
232+
/// Create a new PDF with the given settings.
233233
pub fn with_settings(settings: Settings) -> Self {
234234
let mut pdf = Self::new();
235235
pdf.settings = settings;

0 commit comments

Comments
 (0)