From 6c0a1de36543cf84617de21234871f153ace840f Mon Sep 17 00:00:00 2001 From: Quinn Date: Sat, 23 Aug 2025 22:32:07 +0200 Subject: [PATCH] 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`. --- docs/dev/styleref.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/styleref.md b/docs/dev/styleref.md index 4d74526..9d03eb9 100644 --- a/docs/dev/styleref.md +++ b/docs/dev/styleref.md @@ -19,7 +19,7 @@ Where we have dependencies on: | [glfw](https://www.glfw.org/) | window creation / input handling. | | [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. ### style guide