commit b8f7e3033047e61613ea2f89e5a750e096313f7a
parent 31f882ae8ce9e878ee968a53ca959b17f06b37f8
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Wed, 26 Oct 2022 15:03:51 +0200
Fix comments
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt
@@ -17,7 +17,7 @@ cmake_minimum_required(VERSION 3.1)
project(scpr C CXX)
enable_testing()
-option(NO_TEST "Do not compile the test pograms" OFF)
+option(NO_TEST "Do not compile the test programs" OFF)
set(SCPR_SOURCE_DIR ${PROJECT_SOURCE_DIR}/../src)
diff --git a/src/scpr.h b/src/scpr.h
@@ -61,7 +61,7 @@ BEGIN_DECLS
/* Polygons can be made of any number of paths.
* Polygons inside/outside regions are defined by their winding numbers
* considering the Even-Odd convention.
- * E.g. a CCW polygon inside a CW one defines a hole. */
+ * E.g. a CCW path inside a CW one defines a hole. */
SCPR_API res_T
scpr_polygon_create
(struct mem_allocator* allocator, /* May be NULL <=> Use default allocator */