diff --git a/docs/source/parallel/magics.rst b/docs/source/parallel/magics.rst
index 278e8c9..3576915 100644
--- a/docs/source/parallel/magics.rst
+++ b/docs/source/parallel/magics.rst
@@ -141,7 +141,7 @@ independent of the defaults for the View.
 
 .. seealso::
 
-    :ref:`%pxconfig` accepts these same arguments for changing the *default*
+    :ref:`pxconfig` accepts these same arguments for changing the *default*
     values of targets/blocking for the active View.
 
 
@@ -232,6 +232,8 @@ on the engines until you do %autopx again.
     In [35]: %autopx
     Auto Parallel Disabled
 
+.. _pxconfig:
+
 %pxconfig
 ---------
 
diff --git a/docs/source/parallel/parallel_details.rst b/docs/source/parallel/parallel_details.rst
index 2544cd8..d6cadf8 100644
--- a/docs/source/parallel/parallel_details.rst
+++ b/docs/source/parallel/parallel_details.rst
@@ -180,17 +180,21 @@ flags for all views:
 
 block : bool (default: view.block)
     Whether to wait for the result, or return immediately.
+
     False:
         returns AsyncResult
     True:
-        returns actual result(s) of f(*args, **kwargs)
+        returns actual result(s) of ``f(*args, **kwargs)``
+
         if multiple targets:
             list of results, matching `targets`
+
 track : bool [default view.track]
     whether to track non-copying sends.
 
 targets : int,list of ints, 'all', None [default view.targets]
     Specify the destination of the job.
+
     if 'all' or None:
         Run on all active engines
     if list:
@@ -198,8 +202,8 @@ targets : int,list of ints, 'all', None [default view.targets]
     if int:
         Run on single engine
 
-Note that LoadBalancedView uses targets to restrict possible destinations.  LoadBalanced calls
-will always execute in just one location.
+Note that :class:`LoadBalancedView` uses targets to restrict possible destinations.
+LoadBalanced calls will always execute in just one location.
 
 flags only in LoadBalancedViews:
 
diff --git a/docs/source/parallel/parallel_transition.rst b/docs/source/parallel/parallel_transition.rst
index 06e268e..bf55559 100644
--- a/docs/source/parallel/parallel_transition.rst
+++ b/docs/source/parallel/parallel_transition.rst
@@ -240,6 +240,6 @@ result.
 
 .. seealso::
 
-    :ref:`AsyncResult details <AsyncResult>`
+    :doc:`AsyncResult details <asyncresult>`