summaryrefslogtreecommitdiff
path: root/std/README.md
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-07-11 05:52:18 +0100
committerGitHub <noreply@github.com>2020-07-11 00:52:18 -0400
commit5ec41cbcc2778a80b6ee91f0c391fc2edec0a8e0 (patch)
tree71d44638e72871624aef63deca19eb271ffa8604 /std/README.md
parent40d081d3d9f64bcd2524da86fb78808ac1d7b888 (diff)
feat(Deno.inspect): Add sorted, trailingComma, compact and iterableLimit to InspectOptions (#6591)
Diffstat (limited to 'std/README.md')
-rw-r--r--std/README.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/std/README.md b/std/README.md
index bf1d6940b..12380412f 100644
--- a/std/README.md
+++ b/std/README.md
@@ -21,7 +21,10 @@ Don't link to / import any module whose path:
- Is that of a test module or test data: `test.ts`, `foo_test.ts`,
`testdata/bar.txt`.
-No stability is guaranteed for these files.
+Don't import any symbol with an underscore prefix: `export function _baz() {}`.
+
+These elements are not considered part of the public API, thus no stability is
+guaranteed for them.
## Documentation
@@ -29,7 +32,7 @@ To browse documentation for modules:
- Go to https://deno.land/std/.
- Navigate to any module of interest.
-- Click the "DOCUMENTATION" link.
+- Click "View Documentation".
## Contributing