From c6169d75e845f0d254daaa9efb3b4e090eed1bba Mon Sep 17 00:00:00 2001 From: Artem Daugel-Dauge Date: Tue, 21 Sep 2021 22:37:51 +0300 Subject: [PATCH] Add links to readme --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 4cc4201..196ef2e 100644 --- a/README.md +++ b/README.md @@ -58,7 +58,7 @@ Probably. But we'll see **What targets are supported?** -JVM and most of Kotlin/Native targets. Kotlin/JS is not supported for now (see #4). Please file an issue if you don't find a target you need +JVM and most of Kotlin/Native targets. Kotlin/JS is not supported for now (see [#4](https://github.com/daugeldauge/kinzhal/issues/4)). Please file an issue if you don't find a target you need ## Examples @@ -117,7 +117,7 @@ See more in the [source code](https://github.com/daugeldauge/kinzhal/tree/master | ---------- | --------------- | -----------| | `@Component` | ✅ | | | Constructor injection | ✅ | | -| Field injection | 🚫 | #1 | +| Field injection | 🚫 | [#1](https://github.com/daugeldauge/kinzhal/issues/1) | | Component provision functions and properties | ✅ | | | `@Module` | ⚠️ | Kinzhal has modules but does not have `@Module` annotation. All classes in component module list are treated as modules. Only `object` modules with provides=functions and `interface` modules with binds-functions are allowed | | `@Provides` | ⚠️ | Kinzhal does not have `@Provides` annotation. All non-abstract functions in a module are considered to be provides-functions | @@ -125,10 +125,10 @@ See more in the [source code](https://github.com/daugeldauge/kinzhal/tree/master | `@Scope` | ✅ | | | `@Qualifier` | ✅ | | | Component dependencies | ✅ | Dependency instances are passed to generated component's constructor instead of builder functions | -| `@Subcomponent` | 🚫 | #3
You can use component dependency to emulate behaviour of subcomponents | +| `@Subcomponent` | 🚫 | [#3](https://github.com/daugeldauge/kinzhal/issues/3)
You can use component dependency to emulate behaviour of subcomponents | | `@Reusable` | 🚫 | | | `@BindsInstance` | 🚫 | You can use component dependency to bind instances | -| Lazy/provider injections | 🚫 | #2 | +| Lazy/provider injections | 🚫 | [#2](https://github.com/daugeldauge/kinzhal/issues/2) | | `@BindsOptionalOf` | 🚫 | | Multibindings | 🚫 | | | Assisted injection | 🚫 | |