Skip to content

Commit 55c6a57

Browse files
committed
Tweak capitalization in URL links
1 parent eda26dc commit 55c6a57

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010

1111
### Fixed
1212

13-
- Fix the `DOWNLOAD_EXTRACT_TIMESTAMP` CMake warning (see [datatype99/issues/15](https://github.com/Hirrolot/datatype99/issues/15)).
13+
- Fix the `DOWNLOAD_EXTRACT_TIMESTAMP` CMake warning (see [datatype99/issues/15](https://github.com/hirrolot/datatype99/issues/15)).
1414

1515
## 1.0.0 - 2022-05-15
1616

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ include(FetchContent)
1010

1111
FetchContent_Declare(
1212
metalang99
13-
URL https://github.com/Hirrolot/metalang99/archive/refs/tags/v1.13.2.tar.gz
13+
URL https://github.com/hirrolot/metalang99/archive/refs/tags/v1.13.2.tar.gz
1414
)
1515

1616
FetchContent_MakeAvailable(metalang99)

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021-2024 Hirrolot
3+
Copyright (c) 2021-2024 hirrolot
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<div align="center">
22
<h1>Interface99</h1>
3-
<a href="https://github.com/Hirrolot/interface99/actions">
4-
<img src="https://github.com/Hirrolot/interface99/workflows/C/C++%20CI/badge.svg">
3+
<a href="https://github.com/hirrolot/interface99/actions">
4+
<img src="https://github.com/hirrolot/interface99/workflows/C/C++%20CI/badge.svg">
55
</a>
66
<a href="https://lists.sr.ht/~hirrolot/metalang99">
77
<img src="https://img.shields.io/badge/mailing%20list-lists.sr.ht-orange">
@@ -172,7 +172,7 @@ perim = 300
172172

173173
Interface99 consists of one header file `interface99.h` and one dependency [Metalang99]. To use it in your project, you need to:
174174

175-
[Metalang99]: https://github.com/Hirrolot/metalang99
175+
[Metalang99]: https://github.com/hirrolot/metalang99
176176

177177
1. Add `interface99` and `metalang99/include` to your include directories.
178178
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)
189189
190190
FetchContent_Declare(
191191
interface99
192-
URL https://github.com/Hirrolot/interface99/archive/refs/tags/v1.2.3.tar.gz # v1.2.3
192+
URL https://github.com/hirrolot/interface99/archive/refs/tags/v1.2.3.tar.gz # v1.2.3
193193
)
194194
195195
FetchContent_MakeAvailable(interface99)
@@ -204,7 +204,7 @@ elseif(CMAKE_C_COMPILER_ID STREQUAL "GNU")
204204
endif()
205205
```
206206

207-
(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.)
207+
(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.)
208208

209209
[`FetchContent_Declare`]: https://cmake.org/cmake/help/latest/module/FetchContent.html#command:fetchcontent_declare
210210

@@ -677,17 +677,17 @@ Thanks to Rust and Golang for their implementations of traits/interfaces.
677677
2. Update `CHANGELOG.md`.
678678
3. Release the project in [GitHub Releases].
679679

680-
[GitHub Releases]: https://github.com/Hirrolot/interface99/releases
680+
[GitHub Releases]: https://github.com/hirrolot/interface99/releases
681681

682682
## FAQ
683683

684684
### Q: Why use C instead of Rust/Zig/whatever else?
685685

686-
A: See [Datatype99's README >>](https://github.com/Hirrolot/datatype99#q-why-use-c-instead-of-rustzigwhatever-else).
686+
A: See [Datatype99's README >>](https://github.com/hirrolot/datatype99#q-why-use-c-instead-of-rustzigwhatever-else).
687687

688688
### Q: Why not third-party code generators?
689689

690-
A: See [Metalang99's README >>](https://github.com/Hirrolot/metalang99#q-why-not-third-party-code-generators).
690+
A: See [Metalang99's README >>](https://github.com/hirrolot/metalang99#q-why-not-third-party-code-generators).
691691

692692
### Q: How does it work?
693693

@@ -715,7 +715,7 @@ Other worth-mentioning projects:
715715
[`obj.h`]: https://github.com/small-c/obj.h
716716
[GObject]: https://developer.gnome.org/gobject/stable/
717717
[COS]: http://ldeniau.web.cern.ch/ldeniau/cos.html
718-
[Datatype99]: https://github.com/Hirrolot/datatype99
718+
[Datatype99]: https://github.com/hirrolot/datatype99
719719
[typeclass-interface-pattern]: https://github.com/TotallyNotChase/typeclass-interface-pattern
720720
[OOC]: https://www.cs.rit.edu/~ats/books/ooc.pdf
721721

interface99.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
/*
22
MIT License
33
4-
Copyright (c) 2021-2024 Hirrolot
4+
Copyright (c) 2021-2024 hirrolot
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
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
2222
SOFTWARE.
2323
*/
2424

25-
// The official repository: <https://github.com/Hirrolot/interface99>.
25+
// The official repository: <https://github.com/hirrolot/interface99>.
2626

2727
#ifndef INTERFACE99_H
2828
#define INTERFACE99_H

0 commit comments

Comments
 (0)