Skip to content

Commit 1c30d52

Browse files
committed
fix typos
1 parent c961d49 commit 1c30d52

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/default-resolver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
export const defaultErrors = [{message: 'an unknown error has occured'}];
1+
export const defaultErrors = [{message: 'an unknown error has occured.'}];
22

33
export default function defaultResolver(path) {
44
const keys = path.split('.');

test/default-resolver-test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ suite('default-resolver-test', () => {
4747
});
4848
});
4949

50-
test('it rejects with synthetic errors hash if no top level key available', () => {
50+
test('it rejects with a synthetic errors hash if no top level key available', () => {
5151
const resolve = defaultResolver('node');
5252

5353
return resolve({}).then(() => {

0 commit comments

Comments
 (0)