Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fix(container): correct inconsistent return type from getAll
Closes #71
  • Loading branch information
EisenbergEffect committed Jan 25, 2016
1 parent 6c639dd commit bbbef9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/container.js
Expand Up @@ -378,7 +378,7 @@ export class Container {
return results;
}

return resolver.get(this, key);
return [resolver.get(this, key)];
}

/**
Expand Down

0 comments on commit bbbef9e

Please sign in to comment.