Merge pull request #30674 from loekd/patch-5

Update toset.mdx
This commit is contained in:
Craig Wright 2022-03-15 17:31:41 -07:00 committed by GitHub
commit c5d7bd3e65
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -31,9 +31,9 @@ same type, mixed-typed elements will be converted to the most general type:
```
> toset(["a", "b", 3])
[
"3",
"a",
"b",
"3",
]
```