summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFederico Caselli <cfederico87@gmail.com>2023-02-13 20:16:45 +0100
committerFederico Caselli <cfederico87@gmail.com>2023-02-13 20:16:45 +0100
commit1b726c48384931c813d254b6451cfb6ea4e5b882 (patch)
treebcd24bfb4c1bef2d0cb3cef941fa6c65450928ad
parent7832e8d4e6ac87619acd4c348bdb0590eb60af43 (diff)
downloadsqlalchemy-1b726c48384931c813d254b6451cfb6ea4e5b882.tar.gz
fix documentation formatting
Change-Id: I3307e1844237b58486dcce334eab80689e116bb8
-rw-r--r--doc/build/changelog/whatsnew_20.rst4
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/build/changelog/whatsnew_20.rst b/doc/build/changelog/whatsnew_20.rst
index dc58a6710..4ae88956e 100644
--- a/doc/build/changelog/whatsnew_20.rst
+++ b/doc/build/changelog/whatsnew_20.rst
@@ -1940,7 +1940,9 @@ dictionary to apply custom parameters, as in the example below::
col4 = Column(Integer)
__tablename__ = "model"
-The above model places "id" before all others and "col1" after "id"::
+The above model places "id" before all others and "col1" after "id":
+
+.. sourcecode:: sql
CREATE TABLE model (
id INTEGER NOT NULL,