aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author ftbsc <dev@fantabos.co>2023-03-04 14:57:53 +0100
committer ftbsc <dev@fantabos.co>2023-03-04 14:57:53 +0100
commitf0530990731d52788cebfc6421276b720b1ccd92 (patch)
treed4061ac528c6d51fa6d862904dacbc7caa885df5
parentae8b3ca2ce19022c96bbca51e08d3c0e7b556b46 (diff)
doc: minor fixes in readme
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 403cb2d..b14956a 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# Lillero
-Lillero is a lightweight and simple ASM patching framework built on top of [ObjectWeb's ASM library](https://asm.ow2.io/).
+Lillero is a lightweight and simple Java ASM patching framework built on top of [ObjectWeb's ASM library](https://asm.ow2.io/).
## How
This library provides the core interface, `IInjector`, as well as a small set of utils to make your life easier. All patches should implement `IInjector` and be declared as [services](https://docs.oracle.com/javase/8/docs/api/java/util/ServiceLoader.html).
@@ -55,7 +55,7 @@ The following is an example patch, located at `src/main/java/example/patches/Sam
}
```
-When loaded into Minecraf, this patch will crash the game with a NegativeArraySizeException as soon as it's done loading - so you know it's working.
+When loaded into Minecraft, this patch will crash the game with a NegativeArraySizeException as soon as it's done loading - so you know it's working.
The following is the service registration file, located at `src/main/resources/META-INF/services/ftbsc.lll.IInjector`:
```