summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBert JW Regeer <bertjw@regeer.org>2022-12-27 19:07:42 +0100
committerBert JW Regeer <bertjw@regeer.org>2022-12-27 19:07:42 +0100
commite11c95b8f37b0eff61c1b11931e307468226ed5e (patch)
tree9e3dbad55c40fe92339a532196e4e66b9403a282 /docs
parent5a3c3c9ddc221c0dfec02c91da466e6b26acd903 (diff)
downloadpyramid-e11c95b8f37b0eff61c1b11931e307468226ed5e.tar.gz
pyramid-e11c95b8f37b0eff61c1b11931e307468226ed5e.tar.bz2
pyramid-e11c95b8f37b0eff61c1b11931e307468226ed5e.zip
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.