Skip to content

Commit ea80b0a

Browse files
committed
fix(boot): fix spelling typos
1 parent 658a65d commit ea80b0a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/boot/src/bootstrapper.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ const debug = debugModule('loopback:boot:bootstrapper');
2525
* NOTE: Bootstrapper should be bound as a SINGLETON so it can be cached as
2626
* it does not maintain any state of it's own.
2727
*
28-
* @param app Appliaction instance
28+
* @param app Application instance
2929
* @param projectRoot The root directory of the project, relative to which all other paths are resolved
3030
* @param [bootOptions] The BootOptions describing the conventions to be used by various Booters
3131
*/
@@ -41,7 +41,7 @@ export class Bootstrapper {
4141
app.bind(BootBindings.PROJECT_ROOT).to(this.projectRoot);
4242

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

0 commit comments

Comments
 (0)