Skip to content

Commit

Permalink
Merge pull request #1306 from remotestorage/docs/1304-typo_seperate
Browse files Browse the repository at this point in the history
Typo: seperate -> separate
  • Loading branch information
raucao committed Jan 17, 2024
2 parents 12384cb + 492711d commit e91c5f5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Many thanks to @iLiviu for contributing all fixes in this release!
* `RemoteStorage.defineModule` is no more, and both declaring modules and
loading them in apps can now be done with a new, improved API. (#974)
* The connect widget is not part of the core library anymore, but has moved to
a seperate add-on library (#862)
a separate add-on library (#862)
* Error events (e.g. unauthorized, sync error, etc.) are identified by name
instead of type now (#984)
* Network request timeouts are configured via the `setRequestTimeout` method
Expand Down
2 changes: 1 addition & 1 deletion doc/contributing/building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ Production
This creates the minified production build in ``release/``.

It also creates a seperate source maps file, which you can link to in case you
It also creates a separate source maps file, which you can link to in case you
want to (e.g. to improve exception tracking/debugging in production).
2 changes: 1 addition & 1 deletion test/unit/inmemorycaching-suite.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@ define(['./build/config', './build/inmemorystorage'], function (config, InMemory
test.assertAnd(Object.keys(storage), storageKeys);

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

0 comments on commit e91c5f5

Please sign in to comment.