]> git.ipfire.org Git - thirdparty/fastapi/sqlmodel.git/commitdiff
📝 Update fenced code in Decimal docs for consistency (#1251)
authorSebastián Ramírez <tiangolo@gmail.com>
Sat, 21 Dec 2024 12:14:34 +0000 (12:14 +0000)
committerGitHub <noreply@github.com>
Sat, 21 Dec 2024 12:14:34 +0000 (12:14 +0000)
docs/advanced/decimal.md

index 26994eccf8ccb016e91673a365affc5345d83e8e..1234dcb83b5c1cf912b93fc6b54977c4d5e7dbcd 100644 (file)
@@ -35,7 +35,7 @@ Let's say that each hero in the database will have an amount of money. We could
 
 //// tab | Python 3.10+
 
-```python hl_lines="11"
+```Python hl_lines="11"
 {!./docs_src/advanced/decimal/tutorial001_py310.py[ln:1-11]!}
 
 # More code here later 👇
@@ -45,7 +45,7 @@ Let's say that each hero in the database will have an amount of money. We could
 
 //// tab | Python 3.7+
 
-```python hl_lines="12"
+```Python hl_lines="12"
 {!./docs_src/advanced/decimal/tutorial001.py[ln:1-12]!}
 
 # More code here later 👇