fix(glossar): remove `here()` location parameter at src/glossarium.typ:52:29 due to "calling `state.final` with a location is deprecated"

This commit is contained in:
Sven Vogel 2024-11-20 10:03:12 +01:00
parent 26f77f3690
commit d9e7d875d6
1 changed files with 1 additions and 1 deletions

View File

@ -49,7 +49,7 @@ SOFTWARE.*/
// Reference a term // Reference a term
#let gls(key, suffix: none, long: none, display: none) = { #let gls(key, suffix: none, long: none, display: none) = {
context { context {
let __glossary_entries = __glossary_entries.final(here()) let __glossary_entries = __glossary_entries.final()
if key in __glossary_entries { if key in __glossary_entries {
let entry = __glossary_entries.at(key) let entry = __glossary_entries.at(key)