doc: Edit language/operators

Co-authored-by: John Ericson <John.Ericson@Obsidian.Systems>
Co-authored-by: Valentin Gagarin <valentin@gagarin.work>
This commit is contained in:
Robert Hensing 2024-08-15 18:53:42 +02:00 committed by GitHub
parent e225b63062
commit 06b18cff20
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -54,7 +54,7 @@ If the attribute doesnt exist, return the *expr* after `or` if provided, othe
>
> *func* *expr*
Apply the callable value *func* to the argument *expr*. Note the absence of a visible operator symbol.
Apply the callable value *func* to the argument *expr*. Note the absence of any visible operator symbol.
A callable value is either:
- a [user-defined function][function]
- a [built-in][builtins] function
@ -62,7 +62,7 @@ A callable value is either:
> **Warning**
>
> This "operator" also separates [list] items, which means that calls in list items must be enclosed by parentheses.
> [List][list] items are also separated by whitespace, which means that function calls in list items must be enclosed by parentheses.
## Has attribute