From fa6bf64ca99504b835e68ecce61e54068bc87da3 Mon Sep 17 00:00:00 2001 From: Oleg Alexandrov Date: Fri, 10 Nov 2023 10:36:42 -0800 Subject: [PATCH] Doc fix: must be StreamPointTable and not StreamingPointTable --- doc/development/overview.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/development/overview.rst b/doc/development/overview.rst index c11a0cc840..477ddd62f4 100755 --- a/doc/development/overview.rst +++ b/doc/development/overview.rst @@ -101,8 +101,8 @@ pipeline stages are executed. Most functions receive a PointTableRef object, which refers to the active point table. A PointTableRef can be stored or copied cheaply. -A subclass of PointTable called StreamingPointTable exists to allow a pipeline -to run without loading all points in memory. A StreamingPointTable holds a +A subclass of PointTable called StreamPointTable exists to allow a pipeline +to run without loading all points in memory. A StreamPointTable holds a fixed number of points. Some filters can't operate in streaming mode and an attempt to run a pipeline with a stage that doesn't support streaming will raise an exception.