feature/homework_lection_one #2

Merged
walleri1 merged 5 commits from feature/homework_lection_one into feature/train_go 2025-02-15 11:28:07 +03:00
2 changed files with 1 additions and 1 deletions
Showing only changes of commit ac97ebdbc0 - Show all commits

Binary file not shown.

View File

@ -13,7 +13,7 @@ func GetNumber(message string) (float64, error) {
validate := func(input string) error {
_, err := strconv.ParseFloat(input, 64)
if err != nil {
return errors.New("Invalid number")
return errors.New("Некорректное число. Пожалуйста, введите числовое значение.")
}
return nil
}