Skip to content

Commit 7c5c3f9

Browse files
committed
Documentation tweaks.
1 parent ac97498 commit 7c5c3f9

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
Not all days are 24 hours. Some are 23 hours, or 25, or even 23.5 or 24.5 or 47 hours. Some minutes are 61 seconds long. How about a Thursday followed directly by a Saturday, giving Friday the slip? Or a September only 19 days long? This is a date/time library for handling both day-to-day situations (so to speak) and some weird ones too.
44

5-
[![npm](https://img.shields.io/npm/v/@tubular/time.svg)](https://www.npmjs.com/package/@tubular/time/) [![Coverage Status](https://coveralls.io/repos/github/kshetline/tubular_time/badge.svg?branch=master)](https://coveralls.io/github/kshetline/tubular_time) [![npm downloads](https://img.shields.io/npm/dm/@tubular/time.svg)](https://npmjs.org/package/@tubular/time/) ![npm bundle size (scoped)](https://img.shields.io/bundlephobia/min/@tubular/time) ![license](https://img.shields.io/badge/licence-mit-informational)
5+
[![npm](https://img.shields.io/npm/v/@tubular/time.svg)](https://www.npmjs.com/package/@tubular/time/) [![Coverage Status](https://coveralls.io/repos/github/kshetline/tubular_time/badge.svg?branch=master)](https://coveralls.io/github/kshetline/tubular_time) [![npm downloads](https://img.shields.io/npm/dm/@tubular/time.svg)](https://npmjs.org/package/@tubular/time/) ![npm bundle size (scoped)](https://img.shields.io/bundlephobia/minzip/@tubular/time) ![license](https://img.shields.io/badge/licence-mit-informational)
66

77
## Key features<!-- omit in toc -->
88

@@ -114,7 +114,7 @@ To remotely download the full code as an ES module:
114114

115115
```html
116116
<script type="module">
117-
import('https://unpkg.com/@tubular/time/dist/fesm2015/index.mjs').then(pkg => {
117+
import('https://unpkg.com/@tubular/time/dist/index.min.mjs').then(pkg => {
118118
const { ttime, DateTime, Timezone} = pkg;
119119
120120
// ...
@@ -126,10 +126,10 @@ For the old-fashioned UMD approach (which can save you from about 560K of extra
126126

127127
```html
128128
<script src="https://unpkg.com/@tubular/time/dist/data/timezone-large-alt.js"></script>
129-
<script src="https://unpkg.com/@tubular/time/dist/umd/index.js"></script>
129+
<script src="https://unpkg.com/@tubular/time/dist/index.min.js"></script>
130130
```
131131

132-
_(Or ...`/data/timezone-large.js"`)_
132+
_(...or `/data/timezone-large.js"`)_
133133

134134
The script element just above the `index.js` URL is an example of _optionally_ loading extended timezone definitions. Such a script element, if used, should precede the `index.js` script.
135135

0 commit comments

Comments
 (0)