From 55c6a572bbdf48f431cc157ad2f6de9b94c16748 Mon Sep 17 00:00:00 2001 From: hirrolot Date: Tue, 1 Oct 2024 00:44:07 -0400 Subject: [PATCH] Tweak capitalization in URL links --- CHANGELOG.md | 2 +- CMakeLists.txt | 2 +- LICENSE | 2 +- README.md | 18 +++++++++--------- interface99.h | 4 ++-- 5 files changed, 14 insertions(+), 14 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 747c3a9..f40282b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Fixed - - Fix the `DOWNLOAD_EXTRACT_TIMESTAMP` CMake warning (see [datatype99/issues/15](https://github.com/Hirrolot/datatype99/issues/15)). + - Fix the `DOWNLOAD_EXTRACT_TIMESTAMP` CMake warning (see [datatype99/issues/15](https://github.com/hirrolot/datatype99/issues/15)). ## 1.0.0 - 2022-05-15 diff --git a/CMakeLists.txt b/CMakeLists.txt index afe73b0..b051b8b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ include(FetchContent) FetchContent_Declare( metalang99 - URL https://github.com/Hirrolot/metalang99/archive/refs/tags/v1.13.2.tar.gz + URL https://github.com/hirrolot/metalang99/archive/refs/tags/v1.13.2.tar.gz ) FetchContent_MakeAvailable(metalang99) diff --git a/LICENSE b/LICENSE index 264c276..9b51dae 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2021-2024 Hirrolot +Copyright (c) 2021-2024 hirrolot Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index e955192..4516085 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

Interface99

- - + + @@ -172,7 +172,7 @@ perim = 300 Interface99 consists of one header file `interface99.h` and one dependency [Metalang99]. To use it in your project, you need to: -[Metalang99]: https://github.com/Hirrolot/metalang99 +[Metalang99]: https://github.com/hirrolot/metalang99 1. Add `interface99` and `metalang99/include` to your include directories. 2. Specify [`-ftrack-macro-expansion=0`] (GCC) or [`-fmacro-backtrace-limit=1`] (Clang) to avoid useless macro expansion errors. @@ -189,7 +189,7 @@ include(FetchContent) FetchContent_Declare( interface99 - URL https://github.com/Hirrolot/interface99/archive/refs/tags/v1.2.3.tar.gz # v1.2.3 + URL https://github.com/hirrolot/interface99/archive/refs/tags/v1.2.3.tar.gz # v1.2.3 ) FetchContent_MakeAvailable(interface99) @@ -204,7 +204,7 @@ elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU") endif() ``` -(By default, `interface99/CMakeLists.txt` downloads Metalang99 [v1.13.2](https://github.com/Hirrolot/metalang99/releases/tag/v1.13.2) from the GitHub releases; if you want to override this behaviour, you can do so by invoking [`FetchContent_Declare`] earlier.) +(By default, `interface99/CMakeLists.txt` downloads Metalang99 [v1.13.2](https://github.com/hirrolot/metalang99/releases/tag/v1.13.2) from the GitHub releases; if you want to override this behaviour, you can do so by invoking [`FetchContent_Declare`] earlier.) [`FetchContent_Declare`]: https://cmake.org/cmake/help/latest/module/FetchContent.html#command:fetchcontent_declare @@ -677,17 +677,17 @@ Thanks to Rust and Golang for their implementations of traits/interfaces. 2. Update `CHANGELOG.md`. 3. Release the project in [GitHub Releases]. -[GitHub Releases]: https://github.com/Hirrolot/interface99/releases +[GitHub Releases]: https://github.com/hirrolot/interface99/releases ## FAQ ### Q: Why use C instead of Rust/Zig/whatever else? -A: See [Datatype99's README >>](https://github.com/Hirrolot/datatype99#q-why-use-c-instead-of-rustzigwhatever-else). +A: See [Datatype99's README >>](https://github.com/hirrolot/datatype99#q-why-use-c-instead-of-rustzigwhatever-else). ### Q: Why not third-party code generators? -A: See [Metalang99's README >>](https://github.com/Hirrolot/metalang99#q-why-not-third-party-code-generators). +A: See [Metalang99's README >>](https://github.com/hirrolot/metalang99#q-why-not-third-party-code-generators). ### Q: How does it work? @@ -715,7 +715,7 @@ Other worth-mentioning projects: [`obj.h`]: https://github.com/small-c/obj.h [GObject]: https://developer.gnome.org/gobject/stable/ [COS]: http://ldeniau.web.cern.ch/ldeniau/cos.html -[Datatype99]: https://github.com/Hirrolot/datatype99 +[Datatype99]: https://github.com/hirrolot/datatype99 [typeclass-interface-pattern]: https://github.com/TotallyNotChase/typeclass-interface-pattern [OOC]: https://www.cs.rit.edu/~ats/books/ooc.pdf diff --git a/interface99.h b/interface99.h index 5b32df9..e1cb6d8 100644 --- a/interface99.h +++ b/interface99.h @@ -1,7 +1,7 @@ /* MIT License -Copyright (c) 2021-2024 Hirrolot +Copyright (c) 2021-2024 hirrolot Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -22,7 +22,7 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ -// The official repository: . +// The official repository: . #ifndef INTERFACE99_H #define INTERFACE99_H