From e0de164b09ed6d49f915a5e69b4e68cf7006d7ee Mon Sep 17 00:00:00 2001 From: Annie Szorkin Date: Sun, 15 Sep 2024 20:43:28 -0400 Subject: [PATCH] Fixed a typo in the python code in the seciton 1.8 of the 01-introduction-to-java.md --- 01-introduction-to-java.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/01-introduction-to-java.md b/01-introduction-to-java.md index d335a75..186b9b4 100644 --- a/01-introduction-to-java.md +++ b/01-introduction-to-java.md @@ -806,7 +806,7 @@ class_size = 124 sections = 1; if class_size > 100: sections = 2 - lass_size = class_size / 2; + class_size = class_size / 2; print('Sections: {} and class size: {}'.format(sections, class_size)) ```