From 77635cf16b35b773de88b84619905027ca79f196 Mon Sep 17 00:00:00 2001 From: Hayden Michel Date: Wed, 24 Jun 2026 16:15:07 -0400 Subject: [PATCH] Fix links in README.md for cppreference and Compiler Explorer --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 3cd8ec3..628e876 100644 --- a/README.md +++ b/README.md @@ -104,9 +104,9 @@ Credit * Portions of the lexer grammar and other ideas were derived from pycparser * The source code is liberally sprinkled with comments containing C++ parsing grammar mostly derived from the [Hyperlinked C++ BNF Grammar](https://www.nongnu.org/hcb/) -* cppreference.com has been invaluable for understanding many of the weird +* [cppreference.com](https://cppreference.com) has been invaluable for understanding many of the weird quirks of C++, and some of the unit tests use examples from there -* [Compiler Explorer](godbolt.org) has been invaluable for validating my +* [Compiler Explorer](https://godbolt.org) has been invaluable for validating my understanding of C++ by allowing me to quickly type in quirky C++ constructs to see if they actually compile