Fix a typo where getFoo() should have been setFoo().
git-svn-id: http://soc.googlecode.com/svn/wiki@274 5fae56a1-394a-0410-ba46-5107137fd53f
diff --git a/PythonStyleGuide.wiki b/PythonStyleGuide.wiki
index 0c81667..8e49811 100644
--- a/PythonStyleGuide.wiki
+++ b/PythonStyleGuide.wiki
@@ -1242,7 +1242,7 @@
On the other hand, if access is more complex, or the cost of accessing
the variable is significant, you should use function calls (following
the [PythonStyleGuide#Naming Naming guidelines]) such as `getFoo()` and
-`getFoo()`. If the past behavior allowed access through a property, do
+`setFoo()`. If the past behavior allowed access through a property, do
not bind the new accessor functions to the property. Any code still
attempting to access the variable by the old method should break visibly
so callers are made aware of the change in complexity.