Skip to content

Commit dd48adf

Browse files
committed
Removed commenting around "container, application"
Was causing error "Uncaught ReferenceError: application is not defined"
1 parent dc0b76c commit dd48adf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/understanding-ember/dependency-injection-and-service-lookup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ Ember's container should be viewed as an implementation detail, and is not part
149149
Instead of accessing the container directly, Ember provides an API for registering factories and managing injections on the application instance with an initializer
150150

151151
```app/initializers/logger.js
152-
export function initialize(/* container, application */) {
152+
export function initialize(container, application) {
153153
var logger = {
154154
log: function(message) {
155155
console.log(message);

0 commit comments

Comments
 (0)