From 294dc898fa707c6a70a94d1fd38b92cca4bce1f1 Mon Sep 17 00:00:00 2001 From: Damus2D Date: Thu, 4 Jan 2024 14:03:53 +0100 Subject: [PATCH] pygame.Rect/FRect() init no args DOCS FIX1 --- src_c/doc/rect_doc.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src_c/doc/rect_doc.h b/src_c/doc/rect_doc.h index cfe1e2f1bd..e83a50431c 100644 --- a/src_c/doc/rect_doc.h +++ b/src_c/doc/rect_doc.h @@ -1,5 +1,5 @@ /* Auto generated file: with makeref.py . Docs go in docs/reST/ref/ . */ -#define DOC_RECT "Rect(left, top, width, height) -> Rect\nRect((left, top), (width, height)) -> Rect\nRect(object) -> Rect\nFRect(left, top, width, height) -> FRect\nFRect((left, top), (width, height)) -> FRect\nFRect(object) -> FRect\npygame object for storing rectangular coordinates" +#define DOC_RECT "Rect(left, top, width, height) -> Rect\nRect((left, top), (width, height)) -> Rect\nRect(object) -> Rect\nRect() -> Rect\nFRect(left, top, width, height) -> FRect\nFRect((left, top), (width, height)) -> FRect\nFRect(object) -> FRect\nFRect() -> FRect\npygame object for storing rectangular coordinates" #define DOC_RECT_COPY "copy() -> Rect\ncopy the rectangle" #define DOC_RECT_MOVE "move(x, y, /) -> Rect\nmoves the rectangle" #define DOC_RECT_MOVEIP "move_ip(x, y, /) -> None\nmoves the rectangle, in place"