From d36d43859947414bf8285d0a5d73f22a21b9f508 Mon Sep 17 00:00:00 2001
From: Alexandru Fikl <alexfikl@gmail.com>
Date: Fri, 24 Apr 2020 15:36:28 -0500
Subject: [PATCH] fix doc links

---
 grudge/symbolic/operators.py  | 4 ++--
 grudge/symbolic/primitives.py | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/grudge/symbolic/operators.py b/grudge/symbolic/operators.py
index 20f28e59..c1360b16 100644
--- a/grudge/symbolic/operators.py
+++ b/grudge/symbolic/operators.py
@@ -90,12 +90,12 @@ class Operator(pymbolic.primitives.Expression):
     """
     .. attribute:: dd_in
 
-        an instance of :class:`~grudge.sym.DOFDesc` describing the
+        an instance of :class:`~grudge.symbolic.primitives.DOFDesc` describing the
         input discretization.
 
     .. attribute:: dd_out
 
-        an instance of :class:`~grudge.sym.DOFDesc` describing the
+        an instance of :class:`~grudge.symbolic.primitives.DOFDesc` describing the
         output discretization.
     """
 
diff --git a/grudge/symbolic/primitives.py b/grudge/symbolic/primitives.py
index 96279055..ea9e89f6 100644
--- a/grudge/symbolic/primitives.py
+++ b/grudge/symbolic/primitives.py
@@ -158,9 +158,9 @@ class DOFDesc(object):
             :class:`DTAG_SCALAR` (or the string ``"scalar"``),
             :class:`DTAG_VOLUME_ALL` (or the string ``"vol"``)
             for the default volume discretization,
-            :class:`~meshmode.discretization.connection.FACE_RESTR_ALL`
+            :data:`~meshmode.discretization.connection.FACE_RESTR_ALL`
             (or the string ``"all_faces"``), or
-            :class:`~meshmode.discretization.connection.FACE_RESTR_INTERIOR`
+            :data:`~meshmode.discretization.connection.FACE_RESTR_INTERIOR`
             (or the string ``"int_faces"``), or one of
             :class:`~meshmode.mesh.BTAG_ALL`,
             :class:`~meshmode.mesh.BTAG_NONE`,
@@ -465,7 +465,7 @@ def forward_metric_derivative(xyz_axis, rst_axis, dd=None):
 
     .. math::
 
-        \frac{d x_{\mathtt{xyz\_axis}} }{d r_{\mathtt{rst\_axis}} }
+        \frac{\partial x_{\mathrm{xyz\_axis}} }{\partial r_{\mathrm{rst\_axis}} }
     """
     if dd is None:
         dd = DD_VOLUME
-- 
GitLab