commit f0488f27
Minor spelling fix in README
Also slightly reworded the example cmake usage.
Changed files
| M | README.md before |
diff --git a/README.md b/README.md
index 4978a0f..3185a8c 100644
--- a/README.md
+++ b/README.md
@@ -45,9 +45,9 @@ This project should be compatible with things like [Cmake's ExternalProject_Add]
You can also follow the [build step](#building) below to install at a system level, and use [Cmake's find_package](https://cmake.org/cmake/help/latest/command/find_package.html).
```cmake
-# Specifying a version is optional -- note it follows by Semver
+# Specifying a version is optional -- note it follows Semver
find_package(platform_folders 3.1.0 REQUIRED)
-# Which creates the IMPORTED lib "sago::platform_folders"
+# Which imports the linkable library "sago::platform_folders"
# Use it like so...
target_link_libraries(EXEORLIBNAME PRIVATE sago::platform_folders)
```