Skip to content

Commit eb760a2

Browse files
committed
Fixed missing space in versionadded directives
1 parent 3ae49b4 commit eb760a2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tcod/sdl/audio.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ class AudioStream:
489489
490490
This class is commonly created with :any:`AudioDevice.new_stream` which creates a new stream bound to the device.
491491
492-
..versionadded:: 19.0
492+
.. versionadded:: 19.0
493493
"""
494494

495495
__slots__ = ("__weakref__", "_stream_p")

tcod/sdl/render.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ def color_mod(self, rgb: tuple[int, int, int]) -> None:
271271
def scale_mode(self) -> ScaleMode:
272272
"""Get or set this textures :any:`ScaleMode`.
273273
274-
..versionadded:: 19.3
274+
.. versionadded:: 19.3
275275
"""
276276
mode = ffi.new("SDL_ScaleMode*")
277277
_check(lib.SDL_GetTextureScaleMode(self.p, mode))

0 commit comments

Comments
 (0)