From e69d672354f6ee663e93c0ca2c4d02ebc22681ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Hovs=C3=A4ter?= Date: Sun, 1 Mar 2026 04:36:31 +0100 Subject: [PATCH] Fix warning admonition in `std/streams` (#25564) The rest of the body must be indented in order to fall under the warning admonition. Right now, only the first part of the warning is inside the admonition, see [std/streams](https://nim-lang.org/docs/streams.html). --- lib/pure/streams.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/pure/streams.nim b/lib/pure/streams.nim index 5eb16a8c17..7d422ff4fe 100644 --- a/lib/pure/streams.nim +++ b/lib/pure/streams.nim @@ -16,9 +16,9 @@ ## stream interface. ## ## .. warning:: Due to the use of `pointer`, the `readData`, `peekData` and -## `writeData` interfaces are not available on the compile-time VM, and must -## be cast from a `ptr string` on the JS backend. However, `readDataStr` is -## available generally in place of `readData`. +## `writeData` interfaces are not available on the compile-time VM, and must +## be cast from a `ptr string` on the JS backend. However, `readDataStr` is +## available generally in place of `readData`. ## ## Basic usage ## ===========