summaryrefslogtreecommitdiff
path: root/src/eval/state.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/eval/state.rs')
-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,
}