Skip to content

Commit d3ceb88

Browse files
authored
Update README.md
1 parent 906d58f commit d3ceb88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Instead, you have the "same key, same bean" rule:
1414
> If two beans of the same *key* are injected by the same component, then they are the same bean instance.
1515
1616
Here, "same key" means "same type" or, if a qualifier is used, "same key and same qualifier".
17-
The SKSB-rule may seem restrictive at first, but please note that you can inject `Provider<TheBean> theBeanProvider` (and not just `TheBean theBean`). Calling `theBeanProvider.get()` will give you a freshly wired "distinct" bean instance every time.
17+
The SKSB-rule may seem restrictive at first, but please note that you can always inject `Provider<TheBean> theBeanProvider`, and calling `theBeanProvider.get()` will give you a freshly wired "distinct" bean instance every time.
1818

1919
### Note to dagger users
2020

0 commit comments

Comments
 (0)