Skip to content

Commit 95b036f

Browse files
authored
Merge pull request #173 from luzpaz/typos
Fix typos
2 parents 8c76e35 + 64bffa9 commit 95b036f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/common/halfedgediagram.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ VertexVector vertices() {
194194
return vv;
195195
}
196196

197-
/// return all vertices adjecent to given vertex
197+
/// return all vertices adjacent to given vertex
198198
VertexVector adjacent_vertices( Vertex v) {
199199
VertexVector vv;
200200
BOOST_FOREACH( Edge edge, out_edges( v ) ) {

src/geo/triangle.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class Triangle {
4545
Triangle(Point p1, Point p2, Point p3);
4646

4747
/// return true if Triangle is sliced by a z-plane at z=zcut
48-
/// modify p1 and p2 so that they are intesections of the triangle edges
48+
/// modify p1 and p2 so that they are intersections of the triangle edges
4949
/// and the plane. These vertices are used by CylCutter::edgePush()
5050
bool zslice_verts(Point& p1, Point& p2, double zcut) const;
5151

0 commit comments

Comments
 (0)