Skip to content

Commit 319ff9b

Browse files
committed
update output
1 parent 02f4467 commit 319ff9b

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

biome.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
"tests/tests/**",
2626
"tests/tools_tests/**",
2727
"tests/analysis_tests/**",
28+
"tests/docstrings_examples/**",
2829
"analysis/examples/**",
2930
"analysis/reanalyze/examples/**",
3031
"lib/**",

tests/analysis_tests/tests/package-lock.json

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/analysis_tests/tests/src/expected/Completion.res.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -745,7 +745,7 @@ Path Js.Dict.u
745745
"kind": 12,
746746
"tags": [],
747747
"detail": "(t<'a>, key) => 'a",
748-
"documentation": {"kind": "markdown", "value": "\n`Js.Dict.unsafeGet(key)` returns the value if the key exists, otherwise an `undefined` value is returned. Use this only when you are sure the key exists (i.e. when having used the `keys()` function to check that the key is valid).\n\n## Examples\n\n```rescript\nJs.Dict.unsafeGet(ages, \"Fred\") == 49\nJs.Dict.unsafeGet(ages, \"Paul\") // returns undefined\n```\n"}
748+
"documentation": {"kind": "markdown", "value": "\n`Js.Dict.unsafeGet(key)` returns the value if the key exists, otherwise an `undefined` value is returned. Use this only when you are sure the key exists (i.e. when having used the `keys()` function to check that the key is valid).\n\n## Examples\n\n```rescript\nlet ages = dict{\"Maria\": 30, \"Vinh\": 22, \"Fred\": 49}\nJs.Dict.unsafeGet(ages, \"Fred\") == 49\nJs.Dict.unsafeGet(ages, \"Paul\") // returns undefined\n```\n"}
749749
}, {
750750
"label": "unsafeDeleteKey",
751751
"kind": 12,

0 commit comments

Comments
 (0)