diff --git a/source/docs/functions/staticmethod.rst b/source/docs/functions/staticmethod.rst index a35df84..d7859ea 100644 --- a/source/docs/functions/staticmethod.rst +++ b/source/docs/functions/staticmethod.rst @@ -45,7 +45,7 @@ Example 1 >>> Foo.bar() bar >>> Foo().bar() -Bar +bar Example 2 ========= @@ -62,7 +62,7 @@ Example 2 >>> Foo().bar() bar >>> Foo.bar() -bar* +bar See Also