summaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorLaurenz Mädje <laurmaedje@gmail.com>2019-07-27 20:21:44 +0200
committerLaurenz Mädje <laurmaedje@gmail.com>2019-07-27 21:15:10 +0200
commit6c8b5caa9fa731f16b2d9d232177c00de8f2b74b (patch)
tree6d35227dc307a1c7c7344f8ca290a0784e6c4b8b /src/lib.rs
parent7eec0b8dd70446803c9ffb84a253ebb7e68f3567 (diff)
Improve subsetter testing ✔
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index d12e167a..ed1e079e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -30,10 +30,9 @@
//! ("CMU-Serif-Italic.ttf", font!["Computer Modern", Italic, Serif]),
//! ("NotoEmoji-Regular.ttf", font!["Noto", Regular, Serif, SansSerif, Monospace]),
//! ]));
-//! // Typeset the source code into a document.
-//! let document = typesetter.typeset(src).unwrap();
//!
-//! // Export the document into a PDF file.
+//! // Typeset the document and export it into a PDF file.
+//! let document = typesetter.typeset(src).unwrap();
//! # /*
//! let file = File::create("hello-typeset.pdf").unwrap();
//! # */