Fix a minor typo in README.md

There was a small typo in the "more boxes" section. Changed "vertial" to "vertical".
This commit is contained in:
Julius Guthunz
2024-04-04 16:02:44 +02:00
committed by GitHub
parent 139e7cbb38
commit 0961c6e327

View File

@@ -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.box2) # Put vert box in that box
self.box1.append(self.box3) # And another one, empty for now 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! Now that's more neat!