python api: More fixes. (#8556)
authorAina Niemetz <aina.niemetz@gmail.com>
Mon, 4 Apr 2022 21:13:12 +0000 (14:13 -0700)
committerGitHub <noreply@github.com>
Mon, 4 Apr 2022 21:13:12 +0000 (21:13 +0000)
src/api/python/cvc5.pxi

index 5047efb9b2631fa14d2688ed352931e590beb675..84e92f6eb391a92a0f60a1624f1e0590726fa0ed 100644 (file)
@@ -267,7 +267,7 @@ cdef class DatatypeConstructor:
             (:py:meth:`Sort.isDatatypeConstructor()`). All datatype
             constructors, including nullary ones, should be used as the first
             argument to Terms whose kind is
-            :py:obj:`APPLY_CONSTRUCTOR <cvc5.Kind.APPLY_CONSTRUCTOR>`.
+            :py:obj:`APPLY_CONSTRUCTOR <Kind.APPLY_CONSTRUCTOR>`.
             For example, the nil list can be constructed via
             ``Solver.mkTerm(APPLY_CONSTRUCTOR, [nil])``, where nil is the Term
             returned by this method.
@@ -526,7 +526,7 @@ cdef class DatatypeSelector:
             Selector terms are a class of function-like terms of selector
             sort (:py:meth:`Sort.isDatatypeSelector()`), and should be used as
             the first argument of Terms of kind
-            :py:obj:`APPLY_SELECTOR <cvc5.Kind.APPLY_SELECTOR>`.
+            :py:obj:`APPLY_SELECTOR <Kind.APPLY_SELECTOR>`.
 
             :return: The selector term of this datatype selector.
         """
@@ -541,7 +541,7 @@ cdef class DatatypeSelector:
             Similar to selectors, updater terms are a class of function-like
             terms of updater Sort (:py:meth:`Sort.isDatatypeUpdater()`), and
             should be used as the first argument of Terms of kind
-            :py:ob:`APPLY_UPDATER <cvc5.Kind.APPLY_UPDATER>`.
+            :py:obj:`APPLY_UPDATER <Kind.APPLY_UPDATER>`.
 
             :return: The updater term of this datatype selector.
         """