summaryrefslogtreecommitdiff
path: root/src/eval
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-01-16 15:08:03 +0100
committerLaurenz <laurmaedje@gmail.com>2021-01-16 15:08:03 +0100
commit51efb0f4d69943e290d977673970cd3c8ada306f (patch)
tree6478ba698749eec120755e283adf7932a6a98d2f /src/eval
parentd763f0f5a6a700352ee8926c15c8e58624f705c9 (diff)
Port remaining parser tests 🚚
Diffstat (limited to 'src/eval')
-rw-r--r--src/eval/state.rs10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/eval/state.rs b/src/eval/state.rs
index a88dfd07..21fb7fb6 100644
--- a/src/eval/state.rs
+++ b/src/eval/state.rs
@@ -11,15 +11,15 @@ use crate::paper::{Paper, PaperClass, PAPER_A4};
/// The evaluation state.
#[derive(Debug, Clone, PartialEq)]
pub struct State {
- /// The current page state.
+ /// The current page settings.
pub page: PageSettings,
- /// The current paragraph state.
+ /// The current paragraph settings.
pub par: ParSettings,
- /// The current font state.
+ /// The current font settings.
pub font: FontSettings,
- /// The current directions.
+ /// The current layouting directions.
pub dirs: LayoutDirs,
- /// The current alignments.
+ /// The current alignments of an item in its parent.
pub align: ChildAlign,
}