Change wording to be more accurate

This commit is contained in:
Mike Bierlee 2016-08-23 21:24:41 +02:00
parent 97fbf03b85
commit de26a49b8d

View file

@ -85,7 +85,7 @@ auto exampleInstance = new ExampleClassB();
// Manual autowiring
dependencies.autowire(exampleInstance);
// Let the container handle injection
// Let the container autowire on resolve
dependencies.register!ExampleClassB;
auto exampleInstance2 = dependencies.resolve!ExampleClassB;
```