Skip to content

Commit

Permalink
docs: Fix simple typo, depencies -> dependencies
Browse files Browse the repository at this point in the history
There is a small typo in src/js/Ink/Namespace/ClassModule/1/lib.js, src/js/Ink/Namespace/StaticModule/1/lib.js.

Should read `dependencies` rather than `depencies`.
  • Loading branch information
timgates42 committed Sep 20, 2020
1 parent 232bb70 commit a854096
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/js/Ink/Namespace/ClassModule/1/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Ink.createModule(
'Ink.Namespace.ClassModule', // full module name
'1', // module's version
['Ink.Dom.Event_1', 'Ink.Dom.Css_1'], // array of dependency modules
function(Event, Css) { // this fn will be called async with depencies as arguments
function(Event, Css) { // this fn will be called async with dependencies as arguments

'use strict';

Expand Down
2 changes: 1 addition & 1 deletion src/js/Ink/Namespace/StaticModule/1/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Ink.createModule(
'Ink.Namespace.StaticModule', // full module name
'1', // module's version
['Ink.Dom.Event_1', 'Ink.Dom.Css_1'], // array of dependency modules
function(Event, Css) { // this fn will be called async with depencies as arguments
function(Event, Css) { // this fn will be called async with dependencies as arguments

'use strict';

Expand Down

0 comments on commit a854096

Please sign in to comment.