summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/src/main.rs2
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;