Skip to content

Commit 25483fc

Browse files
Change version
1 parent 590f828 commit 25483fc

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ It can be used on browser or on node.js server code.
66
## Installation
77

88
```bash
9-
node install typescript-ioc
9+
npm install typescript-ioc
1010
```
1111

1212
## Basic Usage
@@ -186,7 +186,8 @@ class ProgrammerDAO extends PersonDAO {
186186
So, everywhere you inject a PersonDAO will receive a ProgrammerDAO instance instead. However, is still possible to create PersonDAO instances through its constructor, like:
187187

188188
```typescript
189-
// a personDAO instance will be returned, with its dependecies resolved by container
189+
// a personDAO instance will be returned,
190+
// with its dependecies resolved by container
190191
let personDAO: PersonDAO = new PersonDAO();
191192
```
192193

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "typescript-ioc",
3-
"version": "0.1.0",
3+
"version": "0.1.1",
44
"description": "A Lightweight annotation-based dependency injection container for typescript.",
55
"author": "Thiago da Rosa de Bustamante <[email protected]>",
66
"dependencies": {

0 commit comments

Comments
 (0)