Skip to content
This repository was archived by the owner on Jan 30, 2023. It is now read-only.

Commit 469d0e2

Browse files
committed
Fix hyperlinks in the documentation of symbolic functions (trac 24398)
1 parent e1db2f9 commit 469d0e2

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

src/doc/en/reference/calculus/index.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.. _symbolic-calculus:
2+
13
Symbolic Calculus
24
=================
35

src/doc/en/reference/functions/index.rst

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
.. _special-functions:
2+
3+
14
Functions
25
=========
36

@@ -28,7 +31,7 @@ Built-in Functions
2831
sage/functions/min_max
2932

3033
Please find extensive developer documentation for creating new functions
31-
in the :doc:`Symbolic Calculus module<calculus/index>`, in particular in
32-
:doc:`sage/symbolic/function`.
34+
in :ref:`symbolic-calculus`, in particular in the section
35+
:ref:`Classes for symbolic functions <symbolic-function-classes>`.
3336

3437
.. include:: ../footer.txt

src/sage/symbolic/function.pyx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
r"""
22
Classes for symbolic functions
33
4+
.. _symbolic-function-classes:
5+
46
To enable their usage as part of symbolic expressions, symbolic function
57
classes are derived from one of the subclasses of :class:`Function`:
68
79
* :class:`BuiltinFunction`: the code of these functions is written in Python;
8-
many special functions are of this type, see this :doc:`list <functions/index>`
10+
many :ref:`special functions<special-functions>` are of this type
911
* :class:`GinacFunction`: the code of these functions is written in C++ and
1012
part of the Pynac support library; most elementary functions are of this type
1113
* :class:`SymbolicFunction`: symbolic functions defined on the Sage command

0 commit comments

Comments
 (0)