Skip to content

Commit fbe7005

Browse files
committed
Update references to minified files
1 parent 7bcc0e4 commit fbe7005

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ These examples should give you the flavor of what's possible, but XRegExp has mo
7979

8080
## Addons
8181

82-
In browsers, you can either load addons individually, or bundle all addons together with XRegExp by loading `xregexp-all.js`. XRegExp's [npm](http://npmjs.org/) package uses `xregexp-all.js`, so addons are always available when XRegExp is installed using npm.
82+
You can either load addons individually, or bundle all addons together with XRegExp by loading `xregexp-all.js`. XRegExp's [npm](http://npmjs.org/) package uses `xregexp-all.js`, so addons are always available when XRegExp is installed using npm.
8383

8484
### Unicode
8585

@@ -204,13 +204,13 @@ XRegExp.matchRecursive(str, '<', '>', 'gy');
204204
In browsers:
205205

206206
```html
207-
<script src="build/xregexp-min.js"></script>
207+
<script src="src/xregexp.js"></script>
208208
```
209209

210210
Or, to bundle XRegExp with all of its addons:
211211

212212
```html
213-
<script src="build/xregexp-all-min.js"></script>
213+
<script src="xregexp-all.js"></script>
214214
```
215215

216216
Using [npm](http://npmjs.org/):
@@ -229,7 +229,7 @@ The [CommonJS](http://wiki.commonjs.org/wiki/Modules)-style `require('xregexp').
229229
In an AMD loader like [RequireJS](http://requirejs.org/):
230230

231231
```js
232-
require({paths: {xregexp: 'build/xregexp-all-min'}}, ['xregexp'], function(XRegExp) {
232+
require({paths: {xregexp: 'xregexp-all'}}, ['xregexp'], function(XRegExp) {
233233
console.log(XRegExp.version);
234234
});
235235
```

0 commit comments

Comments
 (0)