Skip to content

Commit 2c3878d

Browse files
authored
Merge pull request #328 from Trisodium-ru/patch-1
Исправлена ошибка в описании
2 parents 96f1c91 + 32ab248 commit 2c3878d

File tree

1 file changed

+1
-1
lines changed
  • modules/45-logic/90-logical-expressions/ru

1 file changed

+1
-1
lines changed

modules/45-logic/90-logical-expressions/ru/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ print(11 % 2 == 0 and 'yes' or 'no') # => 'no'
104104
# 1 шаг
105105
10 % 2 == 0 # True
106106
# 2 шаг
107-
True and 'yes' # Результат — истина
107+
True and 'yes' # Результат — 'yes'
108108
# Проверка на or выполняется, но правая часть не исполняется, так как сразу возвращается 'yes'
109109

110110
# Для нечетного

0 commit comments

Comments
 (0)