From f8c7339bd016057b811b2eff8fc66a7dd4ba81be Mon Sep 17 00:00:00 2001 From: tshirtman Date: Tue, 27 Nov 2012 11:51:26 +0100 Subject: [PATCH] fix call to :module: instead of :mod: into documentation --- doc/sources/guide2/graphics.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/sources/guide2/graphics.rst b/doc/sources/guide2/graphics.rst index 68a5349af..8167f592e 100644 --- a/doc/sources/guide2/graphics.rst +++ b/doc/sources/guide2/graphics.rst @@ -11,8 +11,8 @@ as an unlimited drawing board, and as a set of drawing instructions, there are numerous different instructions you can apply (add) to your canvas, but there is two main kind of them: -- :module:`kivy.graphics.context_instructions` Context instructions -- :module:`kivy.graphics.vertex_instructions` Vertex Instructions +- :mod:`kivy.graphics.context_instructions` Context instructions +- :mod:`kivy.graphics.vertex_instructions` Vertex Instructions Context instructions don't draw anything, but they change the results of the Vertex instructions.