diff --git a/modules/50-functions/10-define-function/ru/README.md b/modules/50-functions/10-define-function/ru/README.md index ad997ca..c7a1b0f 100644 --- a/modules/50-functions/10-define-function/ru/README.md +++ b/modules/50-functions/10-define-function/ru/README.md @@ -97,9 +97,9 @@ int main() { ``` В коде выше мы попытались определить внутри функции `main()`, функцию `Greating()` и получили ошибку компиляции: -```text - main.cpp:12:3: error: ‘PrintMoto’ was not declared in this scope - 12 | PrintMoto(); +
+  main.cpp:12:3: error: ‘Greating’ was not declared in this scope
+ 12 |   Greating();
     |   ^~~~~~~~~
 ```