Fixed typos

This commit is contained in:
Pascal Borreli
2012-07-24 09:31:27 +00:00
parent f969776312
commit 8a34aa5077
43 changed files with 65 additions and 65 deletions

View File

@@ -24,7 +24,7 @@ IoC containers help make your application more flexible and testable. Since you
});
Great! Now we have registered a resolver for SwiftMailer in our container. But, what if we don't want the container to create a new mailer instance every time we need one? Maybe we just want the container to return the same instance after the intial instance is created. Just tell the container the object should be a singleton:
Great! Now we have registered a resolver for SwiftMailer in our container. But, what if we don't want the container to create a new mailer instance every time we need one? Maybe we just want the container to return the same instance after the initial instance is created. Just tell the container the object should be a singleton:
#### Registering a singleton in the container: