Skip to content

Commit

Permalink
Fix uppercase (#458)
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkingmedia authored and remojansen committed Dec 28, 2016
1 parent ee8562e commit 9eecd1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wiki/container_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ container.bind<Warrior>(TYPES.Warrior).to(Ninja).inTransientScope();
You can use container options to change the default scope used at application level:

```ts
let container = new Container({ defaultScope: "singleton" });
let container = new Container({ defaultScope: "Singleton" });
```

## Container.merge(a: Container, b: Container);
Merges to containers into one:
Merges two containers into one:

```ts
@injectable()
Expand Down

0 comments on commit 9eecd1f

Please sign in to comment.