summaryrefslogtreecommitdiff
path: root/src/paper.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/paper.rs')
-rw-r--r--src/paper.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/paper.rs b/src/paper.rs
index 8dfc071c..03c48f16 100644
--- a/src/paper.rs
+++ b/src/paper.rs
@@ -8,9 +8,9 @@ pub struct Paper {
/// The broad class this paper belongs to.
pub class: PaperClass,
/// The width of the paper in millimeters.
- pub width: f64,
+ width: f64,
/// The height of the paper in millimeters.
- pub height: f64,
+ height: f64,
}
impl Paper {