Skip to content

Commit 492711d

Browse files
typo: seperate -> separate
1 parent 7fcafd4 commit 492711d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ Many thanks to @iLiviu for contributing all fixes in this release!
9595
* `RemoteStorage.defineModule` is no more, and both declaring modules and
9696
loading them in apps can now be done with a new, improved API. (#974)
9797
* The connect widget is not part of the core library anymore, but has moved to
98-
a seperate add-on library (#862)
98+
a separate add-on library (#862)
9999
* Error events (e.g. unauthorized, sync error, etc.) are identified by name
100100
instead of type now (#984)
101101
* Network request timeouts are configured via the `setRequestTimeout` method

doc/contributing/building.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,5 @@ Production
4141
4242
This creates the minified production build in ``release/``.
4343

44-
It also creates a seperate source maps file, which you can link to in case you
44+
It also creates a separate source maps file, which you can link to in case you
4545
want to (e.g. to improve exception tracking/debugging in production).

test/unit/inmemorycaching-suite.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ define(['./build/config', './build/inmemorystorage'], function (config, InMemory
300300
test.assertAnd(Object.keys(storage), storageKeys);
301301

302302
return env.ims.delete('/foo/bar/baz').then(function (r) {
303-
test.assertAnd(r.statusCode, 200, 'Wrong statusCode: '+r.statusCode); //TODO belongs in seperate test
303+
test.assertAnd(r.statusCode, 200, 'Wrong statusCode: '+r.statusCode); //TODO belongs in separate test
304304
test.assertAnd(getLatest(storage['/foo/bar/baz']), undefined);
305305
test.assertAnd(getLatest(storage['/foo/bar/']).itemsMap, {});
306306
test.assertAnd(getLatest(storage['/foo/']).itemsMap, {});

0 commit comments

Comments
 (0)