diff --git a/docs/source/user_guide/examples/1_initial.rst b/docs/source/user_guide/examples/1_initial.rst index 770dbe8..867d231 100644 --- a/docs/source/user_guide/examples/1_initial.rst +++ b/docs/source/user_guide/examples/1_initial.rst @@ -16,3 +16,7 @@ catalog data: reference_path = "path/to/ref_data.{fits,pqt,hdf5}" ref_rand_path = "path/to/rand_data.{fits,pqt,hdf5}" unknown_path = "path/to/unk_data.{fits,pqt,hdf5}" + +.. Note:: + To access the `yet_another_wizz` log messages (e.g. for debugging), check + the :ref:`logging` example. diff --git a/docs/source/user_guide/examples/4_redshifts.rst b/docs/source/user_guide/examples/4_redshifts.rst index 3721f7b..7ca2d6f 100644 --- a/docs/source/user_guide/examples/4_redshifts.rst +++ b/docs/source/user_guide/examples/4_redshifts.rst @@ -8,7 +8,7 @@ measured cross-correlation: .. code-block:: python - ncc = RedshiftData.from_corrfuncs( + ncc = yaw.RedshiftData.from_corrfuncs( cross_corr=cts_sp, ref_corr=cts_ss, # unk_corr=None, diff --git a/docs/source/user_guide/examples/logging.rst b/docs/source/user_guide/examples/logging.rst index a0c4cc0..3b48ce3 100644 --- a/docs/source/user_guide/examples/logging.rst +++ b/docs/source/user_guide/examples/logging.rst @@ -1,3 +1,5 @@ +.. _logging: + Logging -------