From 865f60d06f21c5cb6286d22a88de4d0d49e068fb Mon Sep 17 00:00:00 2001 From: w3stling Date: Thu, 5 Dec 2024 07:21:06 +0100 Subject: [PATCH] Update doc --- .github/README-template.md | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/README-template.md b/.github/README-template.md index 34675d3..9402c59 100644 --- a/.github/README-template.md +++ b/.github/README-template.md @@ -59,7 +59,7 @@ List items = new RssReader().read("file:/path/to/file"); ### Read from multiple feeds -Read from multiple feeds into a single stream of items sored in descending (newest first) publication date order and prints the title. +Read from multiple feeds into a single stream of items sorted in descending (newest first) publication date order and prints the title. ```java List urls = List.of(URL1, URL2, URL3, URL4, URL5); new RssReader().read(urls) diff --git a/README.md b/README.md index 08566aa..0b99139 100644 --- a/README.md +++ b/README.md @@ -59,7 +59,7 @@ List items = new RssReader().read("file:/path/to/file"); ### Read from multiple feeds -Read from multiple feeds into a single stream of items sored in descending (newest first) publication date order and prints the title. +Read from multiple feeds into a single stream of items sorted in descending (newest first) publication date order and prints the title. ```java List urls = List.of(URL1, URL2, URL3, URL4, URL5); new RssReader().read(urls)