summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-04-18 19:10:55 +0200
committerLaurenz <laurmaedje@gmail.com>2023-04-18 19:16:13 +0200
commitd10b53df0b487036b0d639b6033f4568648cfff1 (patch)
tree5209581e847af37c9a770e2e7e43d95bff2e113f /src/lib.rs
parent35302d20047c58baa99065a4574eafe1920e7be6 (diff)
Clippy
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 744013ce..53887a49 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -1,4 +1,3 @@
-#![allow(clippy::comparison_chain)]
//! The compiler for the _Typst_ markup language.
//!
//! # Steps
@@ -34,6 +33,7 @@
//! [raster images]: export::render
#![recursion_limit = "1000"]
+#![allow(clippy::comparison_chain)]
extern crate self as typst;