From 64fbf3d06652bed87d569b45c9252ac8b94aac91 Mon Sep 17 00:00:00 2001 From: Jonas Kalderstam Date: Sun, 10 Sep 2023 23:04:26 +0200 Subject: [PATCH] Fixed typo in README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8d8726b..5c6c238 100644 --- a/README.md +++ b/README.md @@ -40,7 +40,7 @@ val version = "0.2.1" implementation("com.mohamedrejeb.ksoup:ksoup-html:$version") // Only for encoding and decoding HTML entities -implementation("com.mohamedrejeb.ksoup:ksoup-entites:$version") +implementation("com.mohamedrejeb.ksoup:ksoup-entities:$version") ``` ## Usage @@ -156,7 +156,7 @@ val decoded = KsoupEntities.decodeHtml("Hello & World") // return: Hello & W ``` `KsoupEntities` also provides methods to encode and decode only XML entities or HTML4. -The `KsoupEntities` class is available in the `ksoup-entites` module. +The `KsoupEntities` class is available in the `ksoup-entities` module. Both `encodeHtml` and `decodeHtml` methods support all HTML5 entities, XML entities, and HTML4 entities. @@ -192,4 +192,4 @@ distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. -``` \ No newline at end of file +```