From 5f2ee3ed5fa7db71f2a8930c6eb54b7e12773e9d Mon Sep 17 00:00:00 2001 From: Ian Foote Date: Sun, 7 Apr 2013 18:02:44 +0100 Subject: [PATCH] Fix typo: arugment -> argument. --- kivy/uix/gridlayout.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/uix/gridlayout.py b/kivy/uix/gridlayout.py index c33204c72..6473fb41b 100644 --- a/kivy/uix/gridlayout.py +++ b/kivy/uix/gridlayout.py @@ -107,7 +107,7 @@ class GridLayout(Layout): spacing = VariableListProperty([0, 0], length=2) '''Spacing between children: [spacing_horizontal, spacing_vertical]. - spacing also accepts a one arugment form [spacing]. + spacing also accepts a one argument form [spacing]. :data:`spacing` is a :class:`~kivy.properties.VariableListProperty`, default to [0, 0].