Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/boot/src/bootstrapper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const debug = debugModule('loopback:boot:bootstrapper');
* NOTE: Bootstrapper should be bound as a SINGLETON so it can be cached as
* it does not maintain any state of it's own.
*
* @param app Appliaction instance
* @param app Application instance
* @param projectRoot The root directory of the project, relative to which all other paths are resolved
* @param [bootOptions] The BootOptions describing the conventions to be used by various Booters
*/
Expand All @@ -41,7 +41,7 @@ export class Bootstrapper {
app.bind(BootBindings.PROJECT_ROOT).to(this.projectRoot);

// This is re-bound for testing reasons where this value may be passed directly
// and needs to be propogated to the Booters via DI
// and needs to be propagated to the Booters via DI
app.bind(BootBindings.BOOT_OPTIONS).to(this.bootOptions);
}

Expand Down