diff options
author | Eelco Dolstra <edolstra@gmail.com> | 2023-03-23 09:24:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-23 09:24:54 +0100 |
commit | fbc296e00fa05703ea08f9ec478a3cfe11abf3e2 (patch) | |
tree | ccc6e47151304dda64cfd543e1bc48040b418644 /doc | |
parent | e5146a6a505003f16b40160486c21a70204480a2 (diff) | |
parent | 40eb88e4279bf21a29109a5013b8e59a84d449ba (diff) |
Merge pull request #8095 from fricklerhandwerk/operators-formatting
doc: force line breaks where needed
Diffstat (limited to 'doc')
-rw-r--r-- | doc/manual/src/language/operators.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/manual/src/language/operators.md b/doc/manual/src/language/operators.md index 90b325597..a07d976ad 100644 --- a/doc/manual/src/language/operators.md +++ b/doc/manual/src/language/operators.md @@ -43,8 +43,8 @@ If the attribute doesn’t exist, return *value* if provided, otherwise abort ev An attribute path is a dot-separated list of attribute names. An attribute name can be an identifier or a string. -> *attrpath* = *name* [ `.` *name* ]... -> *name* = *identifier* | *string* +> *attrpath* = *name* [ `.` *name* ]... \ +> *name* = *identifier* | *string* \ > *identifier* ~ `[a-zA-Z_][a-zA-Z0-9_'-]*` [Attribute selection]: #attribute-selection |