From f4e391f1d0c08668a77f628619416a7c864ef5bf Mon Sep 17 00:00:00 2001 From: Carm Date: Thu, 9 Jun 2022 14:21:50 +0800 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f6b1e4d..ca9affe 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ When we need to read the object, just use `deserializeJSON(json,typeClass)` to d string. ```java -Location location = serializer.deserializeSON(json, Location.class); +Location location = serializer.deserializeJSON(json, Location.class); // Location{world=world, x=-100.5, y=100, z=105.5, pitch=0.0, yaw=0.0} ```