From f6e739a6c5a767a08a8a4f07c62f6f998ceda79c Mon Sep 17 00:00:00 2001 From: jnichols0 Date: Wed, 3 Jan 2024 00:31:17 -0500 Subject: [PATCH] update big o notation in bisect.rst consistently monospaced --- Doc/library/bisect.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/bisect.rst b/Doc/library/bisect.rst index c0923093c1cb06..db24c044d5002d 100644 --- a/Doc/library/bisect.rst +++ b/Doc/library/bisect.rst @@ -79,7 +79,7 @@ The following functions are provided: To support inserting records in a table, the *key* function (if any) is applied to *x* for the search step but not for the insertion step. - Keep in mind that the ``O(log n)`` search is dominated by the slow O(n) + Keep in mind that the ``O(log n)`` search is dominated by the slow ``O(n)`` insertion step. .. versionchanged:: 3.10 @@ -99,7 +99,7 @@ The following functions are provided: To support inserting records in a table, the *key* function (if any) is applied to *x* for the search step but not for the insertion step. - Keep in mind that the ``O(log n)`` search is dominated by the slow O(n) + Keep in mind that the ``O(log n)`` search is dominated by the slow ``O(n)`` insertion step. .. versionchanged:: 3.10