From 216e5ea78ed05e2e7671fafbabc0b283cf31d0dc Mon Sep 17 00:00:00 2001 From: Alexey Mavrin Date: Fri, 5 Jun 2026 00:39:43 +0300 Subject: [PATCH] introduction.md: fix wrong term "assignment operator assigns a variable with a literal" seems to be incorrect. Better to say "assignment operator assigns a variable with a value" --- 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 83c6c141..7b8440d2 100644 --- a/exercises/concept/freelancer-rates/.docs/introduction.md +++ b/exercises/concept/freelancer-rates/.docs/introduction.md @@ -44,7 +44,7 @@ When one of the involved types is a floating-point type, the result will also be ## Assignment operator -The assignment operator assigns a variable with a literal. +The assignment operator assigns a variable with a value. Always takes place from right to left, and never the other way around. ```cpp