summaryrefslogtreecommitdiff
path: root/crates/typst-macros/src/util.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2024-10-27 19:04:55 +0100
committerGitHub <noreply@github.com>2024-10-27 18:04:55 +0000
commitbe7cfc85d08c545abfac08098b7b33b4bd71f37e (patch)
treef4137fa2aaa57babae1f7603a9b2ed7e688f43d8 /crates/typst-macros/src/util.rs
parentb8034a343831e8609aec2ec81eb7eeda57aa5d81 (diff)
Split out four new crates (#5302)
Diffstat (limited to 'crates/typst-macros/src/util.rs')
-rw-r--r--crates/typst-macros/src/util.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/typst-macros/src/util.rs b/crates/typst-macros/src/util.rs
index 4d8255e0..e8c0910b 100644
--- a/crates/typst-macros/src/util.rs
+++ b/crates/typst-macros/src/util.rs
@@ -200,13 +200,13 @@ impl<T: Parse> Parse for Array<T> {
}
}
-/// Shorthand for `::typst::foundations`.
+/// Shorthand for `::typst_library::foundations`.
#[allow(non_camel_case_types)]
pub struct foundations;
impl quote::ToTokens for foundations {
fn to_tokens(&self, tokens: &mut TokenStream) {
- quote! { ::typst::foundations }.to_tokens(tokens);
+ quote! { ::typst_library::foundations }.to_tokens(tokens);
}
}