Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ JayWire Dependency Injection
A very small and lightweight dependency injection framework for Java 8 without magic. Main features are:

* 100% pure Java code (no XML, no config files)
* Explicit, compile-time wireing
* Explicit, compile-time wiring
* Typesafe
* Modular and extendable
* Small and easy
Expand Down Expand Up @@ -38,9 +38,9 @@ Add this dependency to your Maven build:
This will include the basic interfaces and scopes for standalone usage.
For integration with Web-frameworks see Wiki.

### Wireing everything together
### Wiring everything together

For a simple application a single "Module" object wireing everything together is written this way:
For a simple application a single "Module" object wiring everything together is written this way:

```java
import com.vanillasource.jaywire.standalone.StandaloneModule;
Expand Down