diff options
| author | Alex Saveau <saveau.alexandre@gmail.com> | 2023-06-12 03:44:03 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-06-12 12:44:03 +0200 |
| commit | 7049a4563403e653f5c1f816da3dfd9025c6787a (patch) | |
| tree | 6c9378e0aea1b1de79d3b221d13b4c2f0a89945d /cli | |
| parent | c58a8fbd1dfedf571a47a3c8504067f6365c6cd4 (diff) | |
Fix a bunch of typos + broken link (#1453)
Diffstat (limited to 'cli')
| -rw-r--r-- | cli/src/main.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/src/main.rs b/cli/src/main.rs index 83758190..7ecf3461 100644 --- a/cli/src/main.rs +++ b/cli/src/main.rs @@ -317,7 +317,7 @@ fn export(document: &Document, command: &CompileSettings) -> StrResult<()> { Err("cannot export multiple PNGs without `{n}` in output path")?; } - // Find a number width that accomodates all pages. For instance, the + // Find a number width that accommodates all pages. For instance, the // first page should be numbered "001" if there are between 100 and // 999 pages. let width = 1 + document.pages.len().checked_ilog10().unwrap_or(0) as usize; |
