Tweaks to documentation comments for user-facing Grist functions (#126)

- Update internal links in function documentation
- Remove emphasis in code blocks
- Remove trailing whitespace
This commit is contained in:
Dmitry
2022-02-13 00:45:24 -05:00
committed by GitHub
parent 2611d05c39
commit 25b7e6c245
4 changed files with 21 additions and 21 deletions

View File

@@ -220,9 +220,9 @@ def LEFT(string, num_chars=1):
def LEN(text):
"""
Returns the number of characters in a text string, or the number of items in a list. Same as
[`len`](https://docs.python.org/3/library/functions.html#len) in python.
See [Record Set](https://support.getgrist.com/functions/#recordset) for an example of using `len` on a list of records.
Returns the number of characters in a text string, or the number of items in a list. Same as
[`len`](https://docs.python.org/3/library/functions.html#len) in python.
See [Record Set](#recordset) for an example of using `len` on a list of records.
>>> LEN("Phoenix, AZ")
11