@kravc/dos 1.8.3 → 1.8.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kravc/dos",
3
- "version": "1.8.3",
3
+ "version": "1.8.4",
4
4
  "description": "Convention-based, easy-to-use library for building API-driven serverless services.",
5
5
  "keywords": [
6
6
  "Service",
package/src/Document.js CHANGED
@@ -265,7 +265,7 @@ class Document extends Component {
265
265
 
266
266
  get originalDocument() {
267
267
  if (!this._originalDocument) {
268
- throw new Error('Orginal document is undefined')
268
+ throw new Error('Original document is undefined')
269
269
  }
270
270
 
271
271
  return this._originalDocument
@@ -290,7 +290,7 @@ describe('Document', () => {
290
290
  profile.hasAttributeChanged('name')
291
291
 
292
292
  } catch (error) {
293
- expect(error.message).to.eql('Orginal document is undefined')
293
+ expect(error.message).to.eql('Original document is undefined')
294
294
 
295
295
  return
296
296
  }