From 7cb1a4aaff641115a280ebd667cdd529300b6bb5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20P=2E=20=28Cleymax=29?= Date: Sat, 11 Apr 2020 22:28:55 +0200 Subject: [PATCH] :pencil: Edit README.md --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 74e4624..dcded19 100644 --- a/README.md +++ b/README.md @@ -14,7 +14,7 @@ --- -

Api for downloading and loading the necessary dependencies into the classloader. +

Api to download and load the necessary dependencies into the classloader.

@@ -38,9 +38,9 @@ First you need to retrieve CLibrary. You can download the jar file in the releases. [![GitHub release (latest by date)](https://img.shields.io/github/v/release/Cleymax/CLibrary)](https://github.com/Cleymax/CLibrary/releases) -Or get from github packages: [https://github.com/Cleymax/CLibrary/packages](https://github.com/Cleymax/CLibrary/packages) +Or get it from github packages: [https://github.com/Cleymax/CLibrary/packages](https://github.com/Cleymax/CLibrary/packages) -Or get from my personal repository: +Or get it from my personal repository: - Maven @@ -74,7 +74,7 @@ compile 'fr.cleymax:CLibrary:1.0.1' ### Use -Example, you need Gson in your project. Add the annotation `@Dependency` on any class to load Gson. +Example, you need [Gson](https://github.com/google/gson) in your project. Add the annotation `@Dependency` on any class to load [Gson](https://github.com/google/gson) . ```java import fr.cleymax.clibrary.CLibrary; @@ -96,7 +96,7 @@ You can choose where the dependencies are stored and downloaded. final CLibrary library = new CLibrary(Main.class, new File("dependancies/")); ``` -You can initialize an instance of `CLibrary` with no parameters. But the method `CLibrary#loads()` can no longer be used! +You can initialize an instance of `CLibrary` without any parameters. But the method `CLibrary#loads()` can no longer be used! ```java final CLibrary library = new CLibrary(); ```