From: jazzthief Date: Thu, 2 Feb 2023 13:19:00 +0000 (+0100) Subject: Fix markdown X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9204%2Fhead;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix markdown --- diff --git a/lib/sqlalchemy/sql/_elements_constructors.py b/lib/sqlalchemy/sql/_elements_constructors.py index 3d997f119e..f4bf0d9b80 100644 --- a/lib/sqlalchemy/sql/_elements_constructors.py +++ b/lib/sqlalchemy/sql/_elements_constructors.py @@ -1019,7 +1019,7 @@ def distinct(expr: _ColumnExpressionArgument[_T]) -> UnaryExpression[_T]: def bitwise_not(expr: _ColumnExpressionArgument[_T]) -> UnaryExpression[_T]: - """Produce a column-expression-level unary bitwise NOT (``~``) clause. + """Produce a column-expression-level unary bitwise ``NOT`` (``~``) clause. Not to be confused with boolean negation :func:`_sql.not_`.