From 1845e7c4f2692a998a2879601db518847117a7e2 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 27 Nov 2023 14:13:51 +0100 Subject: [PATCH] Fixed changelog typos Fixes #2537 --- docs/changelog.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/changelog.md b/docs/changelog.md index 2635742e4..e476dd15e 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -130,14 +130,14 @@ description: | - Improved autocompletion for variables that are in-scope - Added autocompletion for package imports - Added autocompletion for [labels]($label) - - Added tooltip that show which variables a function captures (when hovering + - Added tooltip that shows which variables a function captures (when hovering over the equals sign or arrow of the function) - Diagnostics are now deduplicated - Improved diagnostics when trying to apply unary `+` or `-` to types that only support binary `+` and `-` - Error messages now state which label or citation key isn't present in the document or its bibliography - - Fixed a bug where function argument parsing errors where shadowed by + - Fixed a bug where function argument parsing errors were shadowed by function execution errors (e.g. when trying to call [`array.sorted`]($array.sorted) and passing the key function as a positional argument instead of a named one).