sebastiano.tronto.net

Source files and build scripts for my personal website
git clone https://git.tronto.net/sebastiano.tronto.net
Download | Log | Files | Refs | README

commit 4473fea430fbaddaf67afca77ed331067882a638
parent 86059c69cdd5fc46fee8cb4a0c859d211f4a2058
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Fri, 13 Jun 2025 15:26:47 +0200

Update link and fix target

Diffstat:
Msrc/blog/2025-01-21-taming-cpp-templates/taming-cpp-templates.md | 2+-
Msrc/blog/2025-06-13-cargo-culture-shock/cargo-culture-shock.md | 4++--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/blog/2025-01-21-taming-cpp-templates/taming-cpp-templates.md b/src/blog/2025-01-21-taming-cpp-templates/taming-cpp-templates.md @@ -269,7 +269,7 @@ A classic example is [`std::tuple`](https://en.cppreference.com/w/cpp/utility/tuple), which works similarly to `std::pair`, but accepts any number of items. -## Contraints and concepts +## Constraints and concepts To explain the last features I want to talk about, I am going to use a simlpe, albeit slightly unusual, example: let's implement a class diff --git a/src/blog/2025-06-13-cargo-culture-shock/cargo-culture-shock.md b/src/blog/2025-06-13-cargo-culture-shock/cargo-culture-shock.md @@ -325,8 +325,8 @@ Apart from the installation process and the dependency management, my first impression of Rust is quite positive. But as I said, I am just getting started and my judgement is very superficial. I do want to write some small -project in Rust, and I think I'll start from re-writing a simple [math -library for modular arithmetic](../2025-01-21-taming-cpp-templates) +project in Rust, and I think I'll start from re-writing a simple +[math library for modular arithmetic](../2025-01-21-taming-cpp-templates/#constraints-and-concepts) that I wrote in C++ some time ago. Stay tuned for more 🦀