Skip to content

Commit

Permalink
refactor(Resolvable): replace single char variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
christopherthielen committed Feb 23, 2017
1 parent e2faf5d commit bfa7520
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/resolve/resolvable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,8 @@ export class Resolvable implements ResolvableLiteral {

// Gets all dependencies from ResolveContext and wait for them to be resolved
const getResolvableDependencies = () =>
$q.all(resolveContext.getDependencies(this).map(r =>
r.get(resolveContext, trans))) as Promise<any[]>;
$q.all(resolveContext.getDependencies(this).map(resolvable =>
resolvable.get(resolveContext, trans))) as Promise<any[]>;

// Invokes the resolve function passing the resolved dependencies as arguments
const invokeResolveFn = (resolvedDeps: any[]) =>
Expand Down

0 comments on commit bfa7520

Please sign in to comment.