summaryrefslogtreecommitdiff
path: root/library/src/compute/data.rs
diff options
context:
space:
mode:
authorMartin Haug <mhaug@live.de>2022-12-29 18:46:05 +0100
committerMartin Haug <mhaug@live.de>2022-12-29 18:46:05 +0100
commit4119e46a6ee08c6f9f2f27697c57817b584a2f13 (patch)
tree1e1e739a20462ef175b5f732c493915e4129a7e3 /library/src/compute/data.rs
parentbc535f7b7169d9e0ef26faca108518f4005cc76c (diff)
Change read display name, update symmie
Diffstat (limited to 'library/src/compute/data.rs')
-rw-r--r--library/src/compute/data.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/src/compute/data.rs b/library/src/compute/data.rs
index a519e8e6..5b20727e 100644
--- a/library/src/compute/data.rs
+++ b/library/src/compute/data.rs
@@ -4,7 +4,7 @@ use typst::diag::{format_xml_like_error, FileError};
use crate::prelude::*;
-/// # Read file
+/// # Plain text
/// Read plain text from a file.
///
/// The file will be read and returned as a string.
@@ -13,7 +13,7 @@ use crate::prelude::*;
/// ```
/// #let text = read("data.html")
///
-/// An HTML file could look like this:
+/// An HTML file could look like this: \
/// #raw(text, lang: "html")
/// ```
///