Skip to content

Commit da17716

Browse files
committed
Replace non-breaking-space with real space
c.f. louischatriot#501
1 parent 13664cb commit da17716

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -269,10 +269,10 @@ When a field in a document is an array, NeDB first tries to see if the query val
269269

270270
```javascript
271271
// Exact match
272-
db.find({ satellites: ['Phobos', 'Deimos'] }, function (err, docs) {
272+
db.find({ satellites: ['Phobos', 'Deimos'] }, function (err, docs) {
273273
// docs contains Mars
274274
})
275-
db.find({ satellites: ['Deimos', 'Phobos'] }, function (err, docs) {
275+
db.find({ satellites: ['Deimos', 'Phobos'] }, function (err, docs) {
276276
// docs is empty
277277
})
278278

lib/model.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,7 @@ lastStepModifierFunctions.$max = function (obj, field, value) {
401401
* Updates the value of the field, only if specified field is smaller than the current value of the field
402402
*/
403403
lastStepModifierFunctions.$min = function (obj, field, value) {
404-
if (typeof obj[field] === 'undefined') { 
404+
if (typeof obj[field] === 'undefined') {
405405
obj[field] = value;
406406
} else if (value < obj[field]) {
407407
obj[field] = value;

test/model.test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ describe('Model', function () {
383383

384384
it("Doesn't replace a falsy field by an object when recursively following dot notation", function () {
385385
var obj = { nested: false }
386-
, updateQuery = { $set: { "nested.now": 'it is' } }
386+
, updateQuery = { $set: { "nested.now": 'it is' } }
387387
, modified = model.modify(obj, updateQuery);
388388

389389
assert.deepEqual(modified, { nested: false }); // Object not modified as the nested field doesn't exist
@@ -430,7 +430,7 @@ describe('Model', function () {
430430
assert.deepEqual(modified, { yup: 'yes', nested: {} });
431431
});
432432

433-
it("When unsetting nested fields, should not create an empty parent to nested field", function () {
433+
it("When unsetting nested fields, should not create an empty parent to nested field", function () {
434434
var obj = model.modify({ argh: true }, { $unset: { 'bad.worse': true } });
435435
assert.deepEqual(obj, { argh: true });
436436

0 commit comments

Comments
 (0)