Skip to content

Typo: seperate -> separate #1306

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion doc/contributing/building.rst
Original file line number Diff line number Diff line change
@@ -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
@@ -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, {});