Fix minor details

This commit is contained in:
Mike Bierlee 2016-09-03 18:36:26 +02:00
parent 880dac86f8
commit 67fa51a14f
4 changed files with 6 additions and 6 deletions

View file

@ -35,7 +35,7 @@ import poodinis;
class Driver {}
interface Database{};
interface Database {};
class RelationalDatabase : Database {
private Driver driver;
@ -59,7 +59,7 @@ void main() {
auto writer = dependencies.resolve!DataWriter;
}
```
Set-up can further be reduced by enabling "Register on resolve". For more details and examples, see the [examples](example) directory.
Dependency set-up can further be reduced by enabling "Register on resolve". For more details and examples, see the [examples](example) directory.
Documentation
-------------

View file

@ -1,4 +1,4 @@
To build any of these examples, specify the relevant DUB configuration when building with DUB:
To build any of these examples, specify the relevant DUB configuration when building Poodinis with DUB:
```
dub build --build=release --config=<name>Example
```

View file

@ -9,7 +9,7 @@ import poodinis;
class Driver {}
interface Database{};
interface Database {};
class RelationalDatabase : Database {
private Driver driver;