Skip to content

fix(boot): fix spelling typos #1066

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 1, 2018
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