From 9701818f514b32e10a644eb984e8b768562b6049 Mon Sep 17 00:00:00 2001 From: Joel Ray Holveck Date: Mon, 11 May 2026 19:08:40 -0700 Subject: [PATCH] Fix syntax I'd inadvertently used reStructured Text syntax instead of Markdown here. --- docs/source/release-history/v11.0.0.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/release-history/v11.0.0.md b/docs/source/release-history/v11.0.0.md index 892493ab..15ed8b8c 100644 --- a/docs/source/release-history/v11.0.0.md +++ b/docs/source/release-history/v11.0.0.md @@ -15,10 +15,10 @@ writing, but should be by the time we release 11.0!) #### ScreenShot attributes -The :py:attr:`mss.ScreenShot.raw` attribute has been removed. Use the :py:attr:`mss.ScreenShot.bgra` property instead. +The {py:attr}`mss.ScreenShot.raw` attribute has been removed. Use the {py:attr}`mss.ScreenShot.bgra` property instead. -The :py:attr:`mss.ScreenShot.bgra` and :py:attr:`mss.ScreenShot.rgb` properties now will return read-only bytes-like -:py:type:`memoryview` objects, not necessarily :py:type:`bytes` or :py:type:`bytearray` objects. For practical use +The {py:attr}`mss.ScreenShot.bgra` and {py:attr}`mss.ScreenShot.rgb` properties now will return read-only bytes-like +{py:type}`memoryview` objects, not necessarily {py:type}`bytes` or {py:type}`bytearray` objects. For practical use cases, this should not be noticible. This change was allows faster access to screenshot data, with fewer memory copies. ### Python 3.9 EOL