From 7ed22fe25c5f09aabf6d88a7d6136fe5ae610cd0 Mon Sep 17 00:00:00 2001 From: lingbin Date: Tue, 15 Oct 2024 15:36:53 -0700 Subject: [PATCH] Fix formating of code block in vectors.rst (#11163) Summary: In vectors.rst, there is a block of code that is not properly formatted. Pull Request resolved: https://github.com/facebookincubator/velox/pull/11163 Reviewed By: kagamiori Differential Revision: D64224262 Pulled By: kgpai fbshipit-source-id: 401b948e01739b4ee5025fac11af02e2488444ba --- velox/docs/develop/vectors.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/velox/docs/develop/vectors.rst b/velox/docs/develop/vectors.rst index 2bb8af66c2f9..963642151748 100644 --- a/velox/docs/develop/vectors.rst +++ b/velox/docs/develop/vectors.rst @@ -130,7 +130,9 @@ of rows in the vector. Vectors are always held by std::shared_ptr using the VectorPtr alias. -using VectorPtr = std::shared_ptr; +.. code-block:: c++ + + using VectorPtr = std::shared_ptr; The “bits” namespace contains a number of convenience functions for working with a nulls buffer.