summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBert JW Regeer <xistence@0x58.com>2022-12-27 19:22:19 +0100
committerGitHub <noreply@github.com>2022-12-27 19:22:19 +0100
commit453c7737c83417b7034939168b6e6c7ac76fef8a (patch)
tree9e3dbad55c40fe92339a532196e4e66b9403a282 /docs
parent5a3c3c9ddc221c0dfec02c91da466e6b26acd903 (diff)
parente11c95b8f37b0eff61c1b11931e307468226ed5e (diff)
downloadpyramid-453c7737c83417b7034939168b6e6c7ac76fef8a.tar.gz
pyramid-453c7737c83417b7034939168b6e6c7ac76fef8a.tar.bz2
pyramid-453c7737c83417b7034939168b6e6c7ac76fef8a.zip
Merge pull request #3720 from Pylons/bugfix/update-docs-ref-sql
Update reference to ORM in sqlalchemy
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tutorial/databases.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/databases.rst b/docs/quick_tutorial/databases.rst
index db75d70ce..8d216d53d 100644
--- a/docs/quick_tutorial/databases.rst
+++ b/docs/quick_tutorial/databases.rst
@@ -13,8 +13,8 @@ Background
Our Pyramid-based wiki application now needs database-backed storage of pages.
This frequently means an SQL database. The Pyramid community strongly supports
the :ref:`SQLAlchemy <sqla:index_toplevel>` project and its
-:ref:`object-relational mapper (ORM) <sqla:ormtutorial_toplevel>` as a
-convenient, Pythonic way to interface to databases.
+:ref:`object-relational mapper (ORM) <sqla:orm_toplevel>` as a convenient,
+Pythonic way to interface to databases.
In this step we hook up SQLAlchemy to a SQLite database table, providing
storage and retrieval for the wiki pages in the previous step.