]> git.ipfire.org Git - thirdparty/sqlalchemy/alembic.git/commitdiff
Fix wrong ReST expression
authorKim Jin Su <item4_hun@hotmail.com>
Mon, 29 Feb 2016 16:02:19 +0000 (01:02 +0900)
committerKim Jin Su <item4_hun@hotmail.com>
Mon, 29 Feb 2016 16:06:37 +0000 (01:06 +0900)
alembic/operations/base.py
alembic/operations/ops.py

index 346e03bdd2f2a61ddfb89875a6969ab487a83a04..22d601de99fe9dc84bce18ced6813035087fd862 100644 (file)
@@ -395,7 +395,7 @@ class Operations(util.ModuleClsProxy):
          numerics should be supported.   Other types like boolean,
          dates, etc. may or may not be supported yet by various
          backends.
-        :param ``type_``: optional - a :class:`sqlalchemy.types.TypeEngine`
+        :param type_: optional - a :class:`sqlalchemy.types.TypeEngine`
          subclass stating the type of this value.  In SQLAlchemy
          expressions, this is usually derived automatically
          from the Python type of the value itself, as well as
index 839c2da296fba301c5df66323f7e649e85efe796..ed06b4cc0229505251b519a6aaa8cdfff22fa052 100644 (file)
@@ -124,7 +124,7 @@ class DropConstraintOp(MigrateOperation):
 
         :param constraint_name: name of the constraint.
         :param table_name: table name.
-        :param ``type_``: optional, required on MySQL.  can be
+        :param type_: optional, required on MySQL.  can be
          'foreignkey', 'primary', 'unique', or 'check'.
         :param schema: Optional schema name to operate within.  To control
          quoting of the schema outside of the default behavior, use
@@ -1361,7 +1361,7 @@ class AlterColumnOp(AlterTableOp):
          Set to ``None`` to have the default removed.
         :param new_column_name: Optional; specify a string name here to
          indicate the new name within a column rename operation.
-        :param ``type_``: Optional; a :class:`~sqlalchemy.types.TypeEngine`
+        :param type_: Optional; a :class:`~sqlalchemy.types.TypeEngine`
          type object to specify a change to the column's type.
          For SQLAlchemy types that also indicate a constraint (i.e.
          :class:`~sqlalchemy.types.Boolean`, :class:`~sqlalchemy.types.Enum`),