From 2d7dfa67186f88fe12447fba83e9488ea04d619c Mon Sep 17 00:00:00 2001 From: Mark Zhitomirski Date: Sun, 2 Nov 2025 13:25:08 +0400 Subject: [PATCH] typo: name way -> same way --- Exercises/ex6_4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Exercises/ex6_4.md b/Exercises/ex6_4.md index 61370b5..426ba9c 100644 --- a/Exercises/ex6_4.md +++ b/Exercises/ex6_4.md @@ -84,7 +84,7 @@ class Stock(Structure): Stock.create_init() ``` -The resulting class should work exactly the name way as before: +The resulting class should work exactly the same way as before: ```python >>> s = Stock(name='GOOG', shares=100, price=490.1)