From 0961c6e32752a47d6a7ac0cc74022b4496706a1f Mon Sep 17 00:00:00 2001 From: Julius Guthunz <57110140+Julius-Gu@users.noreply.github.com> Date: Thu, 4 Apr 2024 16:02:44 +0200 Subject: [PATCH] Fix a minor typo in README.md There was a small typo in the "more boxes" section. Changed "vertial" to "vertical". --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1a14b9f..892a27a 100644 --- a/README.md +++ b/README.md @@ -182,7 +182,7 @@ self.set_child(self.box1) # Horizontal box to window self.box1.append(self.box2) # Put vert box in that box self.box1.append(self.box3) # And another one, empty for now -self.box2.append(self.button) # Put button in the first of the two vertial boxes +self.box2.append(self.button) # Put button in the first of the two vertical boxes ``` Now that's more neat!