summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-03-11 12:22:27 +0100
committerLaurenz <laurmaedje@gmail.com>2022-03-11 12:22:27 +0100
commit5ce2a006b6d45d29be15e4562ae3ab4fc1b8e97c (patch)
tree454b25e04530adcdf08a161e1ab09abb33c0644c /src/library
parente6b532391deb1e30dc356c4d20dd48199f748f29 (diff)
Consistent block naming
Diffstat (limited to 'src/library')
-rw-r--r--src/library/math/mod.rs2
-rw-r--r--src/library/text/mod.rs2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/library/math/mod.rs b/src/library/math/mod.rs
index 761b4480..c5b79117 100644
--- a/src/library/math/mod.rs
+++ b/src/library/math/mod.rs
@@ -1,3 +1,5 @@
+//! Mathematical formulas.
+
use crate::library::prelude::*;
/// A mathematical formula.
diff --git a/src/library/text/mod.rs b/src/library/text/mod.rs
index 1ce3518c..197971d0 100644
--- a/src/library/text/mod.rs
+++ b/src/library/text/mod.rs
@@ -1,4 +1,4 @@
-//! Text shaping and paragraph layout.
+//! Text handling and paragraph layout.
mod deco;
mod link;