From 98bf612cf148343698700aaed16211e36d8d65a0 Mon Sep 17 00:00:00 2001 From: minnieqi <97722095+minnieqi@users.noreply.github.com> Date: Thu, 23 Jun 2022 20:35:02 -0700 Subject: [PATCH] [README] Confusing last sentence My reasoning for the changes: - "internally" was moved to before the word "uses" and "loading" was moved to before "different file formats" for a better sentence flow. - Sentence was split because the first and second half are talking about different things. I.e., the first half is talking about libraries being used for management, while the second half is about how the libraries are embedded to support different file formats. Splitting the sentence increases readability. - "and are available in" was removed because if the libraries are embedded, it is implied that they are available in that directory. - "to support loading different file formats" was moved to the second half of its sentence because it is more natural and common to place a to-infinitive clause at the end of the sentence. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ee65fac24..33b454ad8 100644 --- a/README.md +++ b/README.md @@ -143,4 +143,4 @@ License raylib is licensed under an unmodified zlib/libpng license, which is an OSI-certified, BSD-like license that allows static linking with closed source software. Check [LICENSE](LICENSE) for further details. -raylib uses internally some libraries for window/graphics/inputs management and also to support different fileformats loading, all those libraries are embedded with and are available in [src/external](https://github.com/raysan5/raylib/tree/master/src/external) directory. Check [raylib dependencies LICENSES](https://github.com/raysan5/raylib/wiki/raylib-dependencies) on raylib Wiki for details. +raylib uses libraries to manage window, graphics, and inputs. The libraries are embedded in the [src/external](https://github.com/raysan5/raylib/tree/master/src/external) directory to support loading different file formats. Check [raylib dependencies LICENSES](https://github.com/raysan5/raylib/wiki/raylib-dependencies) on raylib Wiki for details.