From 8876bad9cf978cdeaa6b1b7338b706f242b99f76 Mon Sep 17 00:00:00 2001 From: Ludovico Gerardi Date: Mon, 27 Oct 2025 16:00:12 +0100 Subject: [PATCH] Invert RBE and Rustlings order A person reading the Learn Rust page left to right or top to bottom will read the Rustlings section before the RBE section, but the former mentions the latter, so the person will encounter RBE before having read about it. Inverting the order of the two sections prevents these unnecessary "forward references". --- templates/learn/index.html.hbs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/templates/learn/index.html.hbs b/templates/learn/index.html.hbs index 76182123..b5ce4c83 100644 --- a/templates/learn/index.html.hbs +++ b/templates/learn/index.html.hbs @@ -24,18 +24,18 @@
-

{{fluent "learn-rustlings"}}

+

{{fluent "learn-rbe"}}

-

{{fluent "learn-rbe"}}

+

{{fluent "learn-rustlings"}}