fix: x86_64 wikipedia link is always the English variant.

The link was pointing to `en.wikipedia.org`, where it is better to not
assume the (preferred) language, and just link to `wikipedia.org`.
This commit is contained in:
2025-08-23 22:32:07 +02:00
parent d9ee6c9155
commit 6c0a1de365

View File

@@ -19,7 +19,7 @@ Where we have dependencies on:
| [glfw](https://www.glfw.org/) | window creation / input handling. | | [glfw](https://www.glfw.org/) | window creation / input handling. |
| [openGL](https://www.opengl.org/) | hardware accelleration, for handling graphics. | | [openGL](https://www.opengl.org/) | hardware accelleration, for handling graphics. |
It is intended to be platform-agnostic, within reason. But the main focus is for [Linux](https://wikipedia.org/wiki/Linux) systems with [x86_64](https://en.wikipedia.org/wiki/X86-64) architecture. It is intended to be platform-agnostic, within reason. But the main focus is for [Linux](https://wikipedia.org/wiki/Linux) systems with [x86_64](https://wikipedia.org/wiki/X86-64) architecture.
Within [intdef.h](/src/util/intdef.h) there live definitions for fixed-width integer types. Within [intdef.h](/src/util/intdef.h) there live definitions for fixed-width integer types.
### style guide ### style guide