From 9bf83d1f910682fb59fe6592fed8a6f4d835ad10 Mon Sep 17 00:00:00 2001 From: rbasralian Date: Mon, 8 Jan 2024 11:33:21 -0500 Subject: [PATCH] Fix pydeephaven-ticking package name and link (#5013) --- py/client/docs/source/examples.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/py/client/docs/source/examples.rst b/py/client/docs/source/examples.rst index 6b8b08b0d63..c8bfac256c0 100644 --- a/py/client/docs/source/examples.rst +++ b/py/client/docs/source/examples.rst @@ -182,10 +182,10 @@ Execute a script server side 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 +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; find build instructions here +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