From d4f6db6234c6caaa12fc52d0dec25f876a4db5bb Mon Sep 17 00:00:00 2001 From: Simon Giraudot Date: Wed, 24 May 2017 14:20:23 +0200 Subject: [PATCH] Fix typo in example comments --- .../examples/Point_set_processing_3/read_las_example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Point_set_processing_3/examples/Point_set_processing_3/read_las_example.cpp b/Point_set_processing_3/examples/Point_set_processing_3/read_las_example.cpp index 87bc31c556b..0d6990b0200 100644 --- a/Point_set_processing_3/examples/Point_set_processing_3/read_las_example.cpp +++ b/Point_set_processing_3/examples/Point_set_processing_3/read_las_example.cpp @@ -16,7 +16,7 @@ typedef std::pair PointWithColor; int main(int argc, char*argv[]) { const char* fname = (argc>1) ? argv[1] : "data/pig_points.las"; - // Reads a .ply point set file with normal vectors and colors + // Reads a .las point set file with normal vectors and colors std::vector points; // store points std::ifstream in(fname);