From 81afa5b7a37dfb9d86c47c616ea04740ad3cbed9 Mon Sep 17 00:00:00 2001 From: Oleg Alexandrov Date: Sat, 11 Nov 2023 07:54:56 -0800 Subject: [PATCH] Refine comment --- examples/writing-streamer/streamer_tutorial.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/examples/writing-streamer/streamer_tutorial.cpp b/examples/writing-streamer/streamer_tutorial.cpp index 8e486df5b7..f551cc3427 100644 --- a/examples/writing-streamer/streamer_tutorial.cpp +++ b/examples/writing-streamer/streamer_tutorial.cpp @@ -105,12 +105,11 @@ int main(int argc, char* argv[]) { using namespace pdal; - // A point cloud. Only one point at a time will be in memory + // Streamed cloud structure StreamedPointCloud stream_cloud; - // Will copy here each point and then stream it to disk. // buf_size is the number of points that will be - // processed and kept in memory at the same time. + // processed and kept in this table at the same time. // A somewhat bigger value may result in some efficiencies. int buf_size = 5; FixedPointTable t(buf_size);