From 337d76b376b97dc26139f686357ff907b4baaa3c Mon Sep 17 00:00:00 2001 From: Akshun <135464796+anochronos@users.noreply.github.com> Date: Thu, 6 Mar 2025 22:59:35 -0500 Subject: [PATCH] docs: typo '9421' -> '9241' --- exercises/concept/freelancer-rates/.docs/introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/concept/freelancer-rates/.docs/introduction.md b/exercises/concept/freelancer-rates/.docs/introduction.md index be17bde7..729d2bce 100644 --- a/exercises/concept/freelancer-rates/.docs/introduction.md +++ b/exercises/concept/freelancer-rates/.docs/introduction.md @@ -19,7 +19,7 @@ A literal is a hard-coded number like `9241`. There are different integer literals for several bases of the representation. Decimal integer literals are the most common and use the digits `0` to `9`. By adding a special prefix, like `0x`, it is possible to use other bases. -The example above shows the number `9421` in its four representations and prefixes. +The example above shows the number `9241` in its four representations and prefixes. All variables are initialized to the same value. For more details on the different representation systems, take a look at [a small tutorial][cpp_numerical_bases].