diff --git a/CGAL_ipelets/demo/CGAL_ipelets/include/CGAL_ipelets/k_delaunay.h b/CGAL_ipelets/demo/CGAL_ipelets/include/CGAL_ipelets/k_delaunay.h index 7709eb5df26..567ca6c42ad 100644 --- a/CGAL_ipelets/demo/CGAL_ipelets/include/CGAL_ipelets/k_delaunay.h +++ b/CGAL_ipelets/demo/CGAL_ipelets/include/CGAL_ipelets/k_delaunay.h @@ -30,17 +30,17 @@ void k_delaunay(Regular& rt,input_DS& input_wpt,int order){ typedef typename Kernel::Point_2 Point_2; typedef typename Kernel::Weighted_point_2 Weighted_point_2; - std::vector Current_sel;//DS that will contain all possible combinaisons of k points (iterator), where k is the order + std::vector Current_sel;//DS that will contain all possible combinations of k points (iterator), where k is the order typename input_DS::iterator it_wpt = input_wpt.begin(); typename input_DS::iterator stop_combi = input_wpt.end(); for(int i=0;i FT operator()( const T1& t1, const T2& t2) const @@ -1108,7 +1108,7 @@ namespace CommonKernelFunctors { public: typedef FT result_type; - // There are 25 combinaisons, we use a template. + // There are 25 combinations, we use a template. template FT operator()( const T1& t1, const T2& t2) const diff --git a/Polygon_mesh_processing/test/Polygon_mesh_processing/test_pmp_clip.cpp b/Polygon_mesh_processing/test/Polygon_mesh_processing/test_pmp_clip.cpp index c95af371fcb..1c00e06c200 100644 --- a/Polygon_mesh_processing/test/Polygon_mesh_processing/test_pmp_clip.cpp +++ b/Polygon_mesh_processing/test/Polygon_mesh_processing/test_pmp_clip.cpp @@ -387,7 +387,7 @@ void test() assert(vertices(tm1).size() == 0); } - // test combinaison of use_compact_clipper and clip_volume + // test combinations of use_compact_clipper and clip_volume { TriangleMesh tm1; std::ifstream("data-coref/cube.off") >> tm1;