From 9980135e54fbe338173ab3df64b365d083196ec3 Mon Sep 17 00:00:00 2001 From: S4cha Date: Wed, 13 Apr 2022 16:02:28 +0200 Subject: [PATCH] Fixes typos --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 645105a..84557c7 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ URLSession + Combine + Generics + Protocols = Networking. - [x] Build a concise Api - [x] Automatically map your models - [x] Uses latest Apple's [Combine](https://developer.apple.com/documentation/combine) / asyn-await -- [x] Compatible with native `Codable` and any JSON Parser +- [x] Compatible with native `Decodable` and any JSON Parser - [x] Embarks a built-in network logger - [x] Pure Swift, simple, lightweight & 0 dependencies @@ -232,7 +232,7 @@ This will forward your calls to the underlying client so that your only have to Given an `Article` model ```swift -struct Article: Codable { +struct Article: DeCodable { let id: String let title: String let content: String