diff --git a/README.md b/README.md index 6155e96..b79562d 100644 --- a/README.md +++ b/README.md @@ -3026,7 +3026,7 @@ pg.quit() ``` ```python -.fill(color) # Pass tuple or pg.Color(''). +.fill(color) # Pass tuple of ints or pg.Color(''). .set_at((x, y), color) # Updates pixel. Also .get_at((x, y)). .blit(, (x, y)) # Draws passed surface at specified location. ``` diff --git a/index.html b/index.html index f922aeb..f640964 100644 --- a/index.html +++ b/index.html @@ -2483,7 +2483,7 @@ pg.quit() -
<Surf>.fill(color)                              # Pass tuple or pg.Color('<name/rgb_code>').
+
<Surf>.fill(color)                              # Pass tuple of ints or pg.Color('<name/hex>').
 <Surf>.set_at((x, y), color)                    # Updates pixel. Also <Surf>.get_at((x, y)).
 <Surf>.blit(<Surf>, (x, y))                     # Draws passed surface at specified location.