Skip to content

Commit 3f291da

Browse files
committed
Update note
1 parent 9d26fdd commit 3f291da

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

dist/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ If no recognized module system is present, access bundle contents via the global
3232

3333
```html
3434
<script type="text/javascript">
35+
// `stdlib` is a global variable...
3536
var erf = stdlib.erf;
3637
console.log( erf( 0.5 ) );
3738
</script>
@@ -47,7 +48,7 @@ If no recognized module system is present, access bundle contents via the global
4748

4849
## Notes
4950

50-
- Bundles are one of two namespace types: `flat` or `tree`. A `tree` namespace is a nested object namespace which mirrors the project's layout (e.g., `stdlib.math.base.special.erf`. A `flat` namespace uses the global project namespace, where each project package has a unique alias (e.g., `stdlib.base.erf`). Which namespace is preferred depends on personal taste and application context.
51+
- Bundles are one of two namespace types: `flat` or `tree`. A `tree` namespace is a nested object namespace which mirrors the project's layout (e.g., `stdlib.math.base.special.erf`. A `flat` namespace uses the global alias namespace, where each package has a unique alias (e.g., `stdlib.base.erf`). Which namespace is preferred depends on personal taste and application context.
5152

5253
</section>
5354

0 commit comments

Comments
 (0)