]> git.ipfire.org Git - thirdparty/sqlalchemy/sqlalchemy.git/commitdiff
- fix link to types in metadata, fixes #3618
authorMike Bayer <mike_mp@zzzcomputing.com>
Sun, 10 Jan 2016 16:48:53 +0000 (11:48 -0500)
committerMike Bayer <mike_mp@zzzcomputing.com>
Sun, 10 Jan 2016 16:48:53 +0000 (11:48 -0500)
- fix "version" got whacked into "f" in core tutorial
- fix short underline in automap
- fix unmatched boldface in session events

doc/build/core/metadata.rst
doc/build/core/tutorial.rst
doc/build/orm/session_events.rst
lib/sqlalchemy/ext/automap.py

index 74802b1c31407c5d6c6e7d7a516ef5e3f9e414a7..24df3bc49cf8c6641053928c0808d77e6a50022e 100644 (file)
@@ -45,7 +45,7 @@ Note also that each column describes its datatype using objects corresponding
 to genericized types, such as :class:`~sqlalchemy.types.Integer` and
 :class:`~sqlalchemy.types.String`. SQLAlchemy features dozens of types of
 varying levels of specificity as well as the ability to create custom types.
-Documentation on the type system can be found at :ref:`types`.
+Documentation on the type system can be found at :ref:`types_toplevel`.
 
 Accessing Tables and Columns
 ----------------------------
index 5773cab4022c635865f612f034c36fc78b88060d..06fc44ce8e274be75357d645984456c6ece998cd 100644 (file)
@@ -869,7 +869,7 @@ need to refer to any pre-established :class:`.Table` metadata:
     :ref:`orm_tutorial_literal_sql` - integrating ORM-level queries with
     :func:`.text`
 
-.. fchanged:: 1.0.0
+.. versionchanged:: 1.0.0
    The :func:`.select` construct emits warnings when string SQL
    fragments are coerced to :func:`.text`, and :func:`.text` should
    be used explicitly.  See :ref:`migration_2992` for background.
index ecfc5176f2d51e7d2c97e5cb6975f2a674bfdb44..27e17717f3bc5d3ea4c81bf6c84d319cb9f6fe91 100644 (file)
@@ -50,7 +50,7 @@ examples such as :ref:`examples_versioned_history` and
 ^^^^^^^^^^^^^^^^^
 
 The :meth:`.SessionEvents.after_flush` hook is called after the SQL has been
-emitted for a flush process, but **before* the state of the objects that
+emitted for a flush process, but **before** the state of the objects that
 were flushed has been altered.  That is, you can still inspect
 the :attr:`.Session.new`, :attr:`.Session.dirty` and
 :attr:`.Session.deleted` collections to see what was just flushed, and
index 218ed64e11b71566f0489fd84c088d9aa0d81765..616cd070d58ff74f0ffdb352e44bbb2fead0aa97 100644 (file)
@@ -112,7 +112,7 @@ explicit table declaration::
         Base.classes.user_order
 
 Specifying Classes Explicitly
-============================
+=============================
 
 The :mod:`.sqlalchemy.ext.automap` extension allows classes to be defined
 explicitly, in a way similar to that of the :class:`.DeferredReflection` class.