From 1b888ec9ed7c3f8bce6cec0cb6560bf704bf2876 Mon Sep 17 00:00:00 2001 From: Faraaz Sareshwala Date: Fri, 13 Sep 2024 17:55:19 +0000 Subject: [PATCH] pw_multibuf: Add missing space to fix docs rendering MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: Icd4d5debb7f609f395d55b3c35df2c0678d8114b Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/235633 Reviewed-by: Josh Conner Pigweed-Auto-Submit: Faraaz Sareshwala Reviewed-by: Kayce Basques Lint: Lint 🤖 Commit-Queue: Faraaz Sareshwala --- pw_multibuf/docs.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pw_multibuf/docs.rst b/pw_multibuf/docs.rst index 849c4eadfb..836d130d90 100644 --- a/pw_multibuf/docs.rst +++ b/pw_multibuf/docs.rst @@ -51,7 +51,7 @@ Most users of ``pw_multibuf`` will start by allocating a ``MultiBuf`` using a ``MultiBufAllocator`` class, such as the ``SimpleAllocator``. ``MultiBuf`` s consist of a number of ``Chunk`` s of contiguous memory regions. -``Chunk`` s can be grown or shrunk which allows ``MultiBuf``s to be grown or +``Chunk`` s can be grown or shrunk which allows ``MultiBuf`` s to be grown or shrunk. This allows, for example, lower layers to reserve part of a ``MultiBuf`` for a header or footer (see ``Chunk`` for more details).