From: Ross Patterson Date: Tue, 29 Apr 2025 20:14:09 +0000 (-0700) Subject: Fix simple typo (#12555) X-Git-Tag: rel_2_0_41~16 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=abc40e50cd9b45f8571343dedbfe83f6d209c9db;p=thirdparty%2Fsqlalchemy%2Fsqlalchemy.git Fix simple typo (#12555) (cherry picked from commit 35c7fa9e9e591b120b5d20cf4125f46a3f23a251) --- diff --git a/doc/build/core/custom_types.rst b/doc/build/core/custom_types.rst index 5390824dda..4b27f2f18a 100644 --- a/doc/build/core/custom_types.rst +++ b/doc/build/core/custom_types.rst @@ -15,7 +15,7 @@ A frequent need is to force the "string" version of a type, that is the one rendered in a CREATE TABLE statement or other SQL function like CAST, to be changed. For example, an application may want to force the rendering of ``BINARY`` for all platforms -except for one, in which is wants ``BLOB`` to be rendered. Usage +except for one, in which it wants ``BLOB`` to be rendered. Usage of an existing generic type, in this case :class:`.LargeBinary`, is preferred for most use cases. But to control types more accurately, a compilation directive that is per-dialect