[clang-tidy] bugprone-not-null-terminated-result: Sphinx adjustments

git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@374709 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst b/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst
index d6f7972..9bd60fb 100644
--- a/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst
+++ b/docs/clang-tidy/checks/bugprone-not-null-terminated-result.rst
@@ -91,21 +91,22 @@
 Memory handler functions
 ^^^^^^^^^^^^^^^^^^^^^^^^
 
-- ``memcpy``: Visit the
-    :ref:`Transformation rules of 'memcpy()'<MemcpyTransformation>` section.
+- ``memcpy`` Please visit the
+  :ref:`Transformation rules of 'memcpy()'<MemcpyTransformation>` section.
 
-- ``memchr``:
-  - Usually there is a C-style cast and it is needed to be removed, because the
-    new function ``strchr``'s return type is correct.
-  - The given length is going to be removed.
+- ``memchr``
+  Usually there is a C-style cast and it is needed to be removed, because the
+  new function ``strchr``'s return type is correct.
+  The given length is going to be removed.
 
-- ``memmove``:
-  - If safe functions are available the new function is ``memmove_s``, which has
-    a new second argument which is the length of the destination array, it is
-    adjusted, and the length of the source string is incremented by one.
-  - If safe functions are not available the given length is incremented by one.
+- ``memmove``
+  If safe functions are available the new function is ``memmove_s``, which has
+  a new second argument which is the length of the destination array, it is
+  adjusted, and the length of the source string is incremented by one.
+  If safe functions are not available the given length is incremented by one.
 
-- ``memmove_s``: given length is incremented by one.
+- ``memmove_s``
+  The given length is incremented by one.
 
 String handler functions
 ^^^^^^^^^^^^^^^^^^^^^^^^