From 070ea17c6d8d480c787196eac58538c86f4510fd Mon Sep 17 00:00:00 2001 From: Enrique Fernandez Date: Thu, 9 May 2024 16:57:58 +0200 Subject: [PATCH] chore(docs): update README.md --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 0cd7371..da55ada 100644 --- a/README.md +++ b/README.md @@ -31,23 +31,20 @@ to use. ### Usage -To fetch all available fixtures, one can run +Fetch all available fixtures. ```elixir fixtures = UOF.API.Sports.fixtures ``` -Given the above list of fixtures, we can easily get a quick idea of the nature -of the currently available fixtures. - -For example, we can count how many fixtures are available +Given a list fixtures, count how many of them there are. ```elixir Enum.count(fixtures) # => 51591 ``` -Or inspect a random fixture +Or inspect a random fixture from the list. ```elixir fixture = Enum.random(fixtures)