diff --git a/docs/reST/ref/cursors.rst b/docs/reST/ref/cursors.rst index b0dc73ec54..1b79f7e227 100644 --- a/docs/reST/ref/cursors.rst +++ b/docs/reST/ref/cursors.rst @@ -214,6 +214,7 @@ The following strings can be converted into cursor bitmaps with correct size for the given width and height. Otherwise an exception is raised. .. method:: copy + | :sl:`copy the current cursor` | :sg:`copy() -> Cursor` @@ -223,7 +224,7 @@ The following strings can be converted into cursor bitmaps with .. attribute:: type - | :sl:`Gets the cursor type` + | :sl:`get the cursor type` | :sg:`type -> string` The type will be ``"system"``, ``"bitmap"``, or ``"color"``. @@ -232,7 +233,7 @@ The following strings can be converted into cursor bitmaps with .. attribute:: data - | :sl:`Gets the cursor data` + | :sl:`get the cursor data` | :sg:`data -> tuple` Returns the data that was used to create this cursor object, wrapped up in a tuple. diff --git a/src_c/doc/cursors_doc.h b/src_c/doc/cursors_doc.h index 664165bf19..fdb95edfcb 100644 --- a/src_c/doc/cursors_doc.h +++ b/src_c/doc/cursors_doc.h @@ -3,6 +3,6 @@ #define DOC_CURSORS_COMPILE "compile(strings, black='X', white='.', xor='o') -> data, mask\ncreate binary cursor data from simple strings" #define DOC_CURSORS_LOADXBM "load_xbm(cursorfile) -> cursor_args\nload_xbm(cursorfile, maskfile) -> cursor_args\nload cursor data from an XBM file" #define DOC_CURSORS_CURSOR "Cursor(size, hotspot, xormasks, andmasks) -> Cursor\nCursor(hotspot, surface) -> Cursor\nCursor(constant) -> Cursor\nCursor(Cursor) -> Cursor\nCursor() -> Cursor\npygame object representing a cursor" -#define DOC_CURSORS_CURSOR_COPY "" -#define DOC_CURSORS_CURSOR_TYPE "type -> string\nGets the cursor type" -#define DOC_CURSORS_CURSOR_DATA "data -> tuple\nGets the cursor data" +#define DOC_CURSORS_CURSOR_COPY "copy() -> Cursor\ncopy the current cursor" +#define DOC_CURSORS_CURSOR_TYPE "type -> string\nget the cursor type" +#define DOC_CURSORS_CURSOR_DATA "data -> tuple\nget the cursor data"