From f3e620a25362ded35e32e5994e82e1f8347f3e3e Mon Sep 17 00:00:00 2001 From: Jianfeng Mao <4297243+jmao-denver@users.noreply.github.com> Date: Mon, 4 Mar 2024 05:00:19 +0800 Subject: [PATCH] Fix the hyperlink to the ticking readme (#5211) --- py/client/docs/source/examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/py/client/docs/source/examples.rst b/py/client/docs/source/examples.rst index 318ccd4119e..b00b4926a6d 100644 --- a/py/client/docs/source/examples.rst +++ b/py/client/docs/source/examples.rst @@ -185,7 +185,7 @@ Subscribe to a ticking table The `pydeephaven-ticking` package can be used to subscribe to ticking tables. This is useful for getting asynchronous callbacks when they change. The package maintains a complete local copy of the table and notifies callers when the table changes. -Note that `pydeephaven-ticking` must be built before running this example. Build instructions are available `here https://github.com/deephaven/deephaven-core/tree/main/py/client-ticking#readme`_. +Note that `pydeephaven-ticking` must be built before running this example. Build instructions are available `here `_. The listener can be specified either as a python function or as an implementation of the TableListener abstract base class. In the case of implementing