Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CGAL Core : fix typos in code comments #8171

Merged
merged 1 commit into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CGAL_Core/include/CGAL/CORE/CoreDefs.h
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ CGAL_GLOBAL_STATE_VAR(bool, AbortFlag, true)
CGAL_GLOBAL_STATE_VAR(std::atomic<bool>, AbortFlag, true)
#endif

/// Invalid Flag -- initiallly value is non-negative
/// Invalid Flag -- initially value is non-negative
/** If the Abort Flag is false, then the Invalid flag will be set to
* a negative value whenever an invalid expression is constructed.
* It is the user's responsibility to check this flag and to make
Expand Down
2 changes: 1 addition & 1 deletion CGAL_ImageIO/include/CGAL/ImageIO/recline.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
*
* DESCRIPTION:
*
* - ALPHA_DERICHE is the first recurvise filter designed
* - ALPHA_DERICHE is the first recursive filter designed
* by R. Deriche. See REFERENCES.
*
* - with ALPHA_DERICHE's filters, one can either compute
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

namespace CGAL {

/* This namespace contains the internal implementation of the tree for builiding Theta graph.
/* This namespace contains the internal implementation of the tree for building Theta graph.
* This is not meant to be imported by other code.
*/
namespace ThetaDetail {
Expand Down
2 changes: 1 addition & 1 deletion Convex_hull_d/include/CGAL/Regular_complex_d.h
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ void associate_point_with_vertex(Vertex_handle v, const Point_d& p)
{ v -> set_point(p); }

void set_neighbor(Simplex_handle s, int i, Simplex_handle s1, int j)
/*{\Mop sets the neihbor opposite to vertex $i$ of |s| to |s1| and
/*{\Mop sets the neighbor opposite to vertex $i$ of |s| to |s1| and
records vertex $j$ of |s1| as the vertex opposite to $i$.}*/
{ s -> set_neighbor(i,s1);
s1 -> set_neighbor(j,s);
Expand Down