Skip to content

Commit ba54319

Browse files
committed
Fix broken links
1 parent 9f18700 commit ba54319

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/source/usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ located in a always visible toolbar at the top of the runmanager interface. Thes
4848
into hardware instructions (see :doc:`labscript <labscript:index>`).
4949
#. The shot output folder: The location to store the hdf5 shot files. By default, the
5050
location in specified by the combination of a value in the laboratory PC configuration
51-
file (see :doc:`labconfig <labscript-suite:labconfig>`), the name of the experiment logic Python file and
51+
file (see :doc:`labconfig <labscript-utils:labconfig>`), the name of the experiment logic Python file and
5252
the current date. The location automatically updates, at midnight, to a new folder
5353
for the day provided the folder location is left as the default.
5454
#. The BLACS hostname: The network hostname of the PC the hdf5 shot files are to

runmanager/__init__.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -825,8 +825,8 @@ def compile_labscript_async(labscript_file, run_file,
825825
done_callback will be called with a boolean argument indicating success. Note that
826826
the zmq communication will be encrypted, or not, according to security settings in
827827
labconfig. If you want to receive the data on a zmq socket, do so using a PULL
828-
socket created from a labscript_utils.ls_zprocess.Context, or using a
829-
labscript_utils.ls_zprocess.ZMQServer. These subclasses will also be configured
828+
socket created from a :class:`labscript_utils.ls_zprocess.Context`, or using a
829+
:class:`labscript_utils.ls_zprocess.ZMQServer`. These subclasses will also be configured
830830
with the appropriate security settings and will be able to receive the messages.
831831
832832
Args:
@@ -867,8 +867,8 @@ def compile_multishot_async(labscript_file, run_files,
867867
stream_port via zmq push as it spews forth, and when each compilation is complete,
868868
done_callback will be called with a boolean argument indicating success. Compilation
869869
will stop after the first failure. If you want to receive the data on a zmq socket,
870-
do so using a PULL socket created from a labscript_utils.ls_zprocess.Context, or
871-
using a labscript_utils.ls_zprocess.ZMQServer. These subclasses will also be
870+
do so using a PULL socket created from a :class:`labscript_utils.ls_zprocess.Context`, or
871+
using a :class:`labscript_utils.ls_zprocess.ZMQServer`. These subclasses will also be
872872
configured with the appropriate security settings and will be able to receive the
873873
messages.
874874
@@ -913,12 +913,12 @@ def compile_labscript_with_globals_files_async(labscript_file, globals_files, ou
913913
"""Compiles labscript_file with multiple globals files into a directory.
914914
915915
Instead, stderr and stdout will be put to
916-
stream_port via zmq push in the multipart message format ['stdout','hello, world\n']
916+
stream_port via zmq push in the multipart message format `['stdout','hello, world\\n']`
917917
etc. When compilation is finished, the function done_callback will be called a
918918
boolean argument indicating success or failure. If you want to receive the data on
919919
a zmq socket, do so using a PULL socket created from a
920-
labscript_utils.ls_zprocess.Context, or using a
921-
labscript_utils.ls_zprocess.ZMQServer. These subclasses will also be configured with
920+
:external:class:`labscript_utils.ls_zprocess.Context`, or using a
921+
:external:class:`labscript_utils.ls_zprocess.ZMQServer`. These subclasses will also be configured with
922922
the appropriate security settings and will be able to receive the messages.
923923
924924
Args:

0 commit comments

Comments
 (0)