From 50dbeb29c13e94078b9f0e91e70febdcc4aa7cdf Mon Sep 17 00:00:00 2001 From: Brendon Bown Date: Thu, 18 Dec 2025 09:30:21 -0700 Subject: [PATCH] Fix link to Real World OCaml in contributions.md The previous link led to a 404 page. This link links to the correct page. Note that, based on the URL, the previous link led to version 1 of the book, while this link leads to version 2. Also, I included `#scrollNav-6` at the end of the URL so that it links directly to the section that I *think* you were intending, but that can easily be removed/updated if that wasn't your intent. Solves issue #39 --- contributions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contributions.md b/contributions.md index 75b7c82..94bdcdc 100644 --- a/contributions.md +++ b/contributions.md @@ -24,7 +24,7 @@ follow the established pattern, and follow these guidelines: This will give your language line-editing capabilities (if `rlwrap` is installed) and a uniform user interface. 9. Do not use `open` to open modules, there are - [better solutions](https://realworldocaml.org/v1/en/html/files-modules-and-programs.html) + [better solutions](https://dev.realworldocaml.org/files-modules-and-programs.html#scrollNav-6) (the best one is to just not look for any shortcuts). Remember: these are *guidelines* that can be broken for a good enough reason.