From b47f3d69eba8926fd9ac358180d1aff517368ffe Mon Sep 17 00:00:00 2001 From: Denery <63610262+maestro-denery@users.noreply.github.com> Date: Sun, 26 Feb 2023 00:54:38 +0300 Subject: [PATCH] fix typos in gradle dependencies --- readme.md | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/readme.md b/readme.md index fe30283..d0b572f 100644 --- a/readme.md +++ b/readme.md @@ -53,12 +53,12 @@ If you're using Gradle 7.0+ you can also use `hypo-catalog` if you like. > dependencies { > implementation(platform("dev.denwav.hypo:hypo-platform:1.2.4")) > // Whichever modules you need: -> implemenatation("dev.denwav.hypo:hypo-model") -> implemenatation("dev.denwav.hypo:hypo-core") -> implemenatation("dev.denwav.hypo:hypo-hydrate") -> implemenatation("dev.denwav.hypo:hypo-asm") -> implemenatation("dev.denwav.hypo:hypo-asm-hydrate") -> implemenatation("dev.denwav.hypo:hypo-mappings") +> implementation("dev.denwav.hypo:hypo-model") +> implementation("dev.denwav.hypo:hypo-core") +> implementation("dev.denwav.hypo:hypo-hydrate") +> implementation("dev.denwav.hypo:hypo-asm") +> implementation("dev.denwav.hypo:hypo-asm-hydrate") +> implementation("dev.denwav.hypo:hypo-mappings") > } > ``` > @@ -76,12 +76,12 @@ If you're using Gradle 7.0+ you can also use `hypo-catalog` if you like. > dependencies { > implementation platform('dev.denwav.hypo:hypo-platform:1.2.4') > // Whichever modules you need: -> implemenatation 'dev.denwav.hypo:hypo-model' -> implemenatation 'dev.denwav.hypo:hypo-core' -> implemenatation 'dev.denwav.hypo:hypo-hydrate' -> implemenatation 'dev.denwav.hypo:hypo-asm' -> implemenatation 'dev.denwav.hypo:hypo-asm-hydrate' -> implemenatation 'dev.denwav.hypo:hypo-mappings' +> implementation 'dev.denwav.hypo:hypo-model' +> implementation 'dev.denwav.hypo:hypo-core' +> implementation 'dev.denwav.hypo:hypo-hydrate' +> implementation 'dev.denwav.hypo:hypo-asm' +> implementation 'dev.denwav.hypo:hypo-asm-hydrate' +> implementation 'dev.denwav.hypo:hypo-mappings' > } > ``` >