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 5fe4b5bce18ede354b29620bbdfff179300710f1
parent 1b3e3705b83d49dafe67b325e314dfc83a493b98
Author: Sebastiano Tronto <sebastiano@tronto.net>
Date:   Sat, 14 Jun 2025 16:14:31 +0200

Remove highlight from link

Diffstat:
Msrc/blog/2025-06-13-cargo-culture-shock/cargo-culture-shock.md | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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 @@ -218,7 +218,7 @@ to an instance of an object". I think it is great that Rust endorses this more thorough way of error handling from the start. On the less-nice side of things, apparently -[integer overflow](https://doc.rust-lang.org/book/ch03-02-data-types.html?highlight=overflow#integer-overflow) +[integer overflow](https://doc.rust-lang.org/book/ch03-02-data-types.html#integer-overflow) is still an issue. Eh. At least when compiling in debug mode overflows are caught, which is nice. But in release mode the program is going to "panic", which I was not expecting. I mistakenly thought