summaryrefslogtreecommitdiff
path: root/library/src
diff options
context:
space:
mode:
authorMartin Haug <mhaug@live.de>2023-01-29 23:26:31 +0100
committerMartin Haug <mhaug@live.de>2023-01-29 23:26:31 +0100
commitc3b3bbb9f23604e9003c300cca6f6c7babe944fc (patch)
treea25d527b903a84c491f5a886bad55132591aa268 /library/src
parentc987f07b76b18d8762a0ef48740ecc71722540f0 (diff)
Update remaining examples
Diffstat (limited to 'library/src')
-rw-r--r--library/src/compute/calc.rs4
-rw-r--r--library/src/compute/construct.rs4
-rw-r--r--library/src/compute/data.rs4
-rw-r--r--library/src/layout/container.rs4
4 files changed, 8 insertions, 8 deletions
diff --git a/library/src/compute/calc.rs b/library/src/compute/calc.rs
index 830f5033..640ec3c5 100644
--- a/library/src/compute/calc.rs
+++ b/library/src/compute/calc.rs
@@ -111,7 +111,7 @@ fn minmax(args: &mut Args, goal: Ordering) -> SourceResult<Value> {
/// ```
/// #even(4) \
/// #even(5) \
-/// { range(10).filter(even) }
+/// #range(10).filter(even)
/// ```
///
/// ## Parameters
@@ -134,7 +134,7 @@ pub fn even(args: &mut Args) -> SourceResult<Value> {
/// ```
/// #odd(4) \
/// #odd(5) \
-/// { range(10).filter(odd) }
+/// #range(10).filter(odd)
/// ```
///
///
diff --git a/library/src/compute/construct.rs b/library/src/compute/construct.rs
index 5a8aa05e..784513f6 100644
--- a/library/src/compute/construct.rs
+++ b/library/src/compute/construct.rs
@@ -16,7 +16,7 @@ use crate::prelude::*;
/// #int(false) \
/// #int(true) \
/// #int(2.7) \
-/// { int("27") + int("4") }
+/// #{ int("27") + int("4") }
/// ```
///
/// ## Parameters
@@ -331,7 +331,7 @@ pub fn label(args: &mut Args) -> SourceResult<Value> {
/// The numbers 1 to 10.
///
/// // Works with string methods.
-/// { "a,b;c"
+/// #{ "a,b;c"
/// .split(regex("[,;]")) }
/// ```
///
diff --git a/library/src/compute/data.rs b/library/src/compute/data.rs
index bf747ec6..63e137e6 100644
--- a/library/src/compute/data.rs
+++ b/library/src/compute/data.rs
@@ -166,7 +166,7 @@ fn format_csv_error(error: csv::Error) -> String {
/// )
/// #h(6pt)
/// #set text(22pt, baseline: -8pt)
-/// {day.temperature} °{day.unit}
+/// #{day.temperature} °#{day.unit}
/// ]
///
/// #forecast(json("monday.json"))
@@ -253,7 +253,7 @@ fn format_json_error(error: serde_json::Error) -> String {
/// heading(title.children.first())
/// text(10pt, weight: "medium")[
/// Published by
-/// {author.children.first()}
+/// #{author.children.first()}
/// ]
///
/// for p in pars.children {
diff --git a/library/src/layout/container.rs b/library/src/layout/container.rs
index 8a772f2d..afbce576 100644
--- a/library/src/layout/container.rs
+++ b/library/src/layout/container.rs
@@ -110,13 +110,13 @@ impl Inline for BoxNode {}
///
/// ## Example
/// ```
-/// [
+/// #[
/// #show heading: it => it.title
/// = No block
/// Some text
/// ]
///
-/// [
+/// #[
/// #show heading: it => block(it.title)
/// = Block
/// Some more text