Skip to content

Commit

Permalink
ENGCOM-2563: [Forwardport] Fix misprint ('_requesetd' > '_requested') #…
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Idolov authored Jul 29, 2018
2 parents fc0324e + d9f3926 commit 88a2b09
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ define([

Element = _.extend({
defaults: {
_requesetd: {},
_requested: {},
containers: [],
exports: {},
imports: {},
Expand Down Expand Up @@ -249,7 +249,7 @@ define([
* @returns {Function} Async module wrapper.
*/
requestModule: function (name) {
var requested = this._requesetd;
var requested = this._requested;

if (!requested[name]) {
requested[name] = registry.async(name);
Expand Down

0 comments on commit 88a2b09

Please sign in to comment.