diff --git a/MeshLib/Elements/Element.h b/MeshLib/Elements/Element.h
index 5e402eff727efe42e9780086457be6ae6f54c881..72308445b4fb6f9a92173e0d0db66451c3e053e2 100644
--- a/MeshLib/Elements/Element.h
+++ b/MeshLib/Elements/Element.h
@@ -155,8 +155,8 @@ public:
 	/// Returns true if these two indeces form an edge and false otherwise
 	virtual bool isEdge(unsigned i, unsigned j) const = 0;
 
-    /// Returns true if the given point is not located outside of the element
-    virtual bool isPntInElement(GeoLib::Point const& pnt) const = 0;
+	/// Returns true if the given point is not located outside of the element
+	virtual bool isPntInElement(GeoLib::Point const& pnt) const = 0;
 
 	/**
 	 * Tests if the element is geometrically valid.
diff --git a/MeshLib/Elements/TemplateLine.h b/MeshLib/Elements/TemplateLine.h
index 858ef66944d9aa1cb26d1da9d4f4d5955a95ccc8..3ae74c36b07ba6255a305ff0d7dbade197b55210 100644
--- a/MeshLib/Elements/TemplateLine.h
+++ b/MeshLib/Elements/TemplateLine.h
@@ -115,8 +115,8 @@ public:
 		return false;
 	}
 
-    /// Returns true if pnt is located on the line segment and false otherwise
-    bool isPntInElement(GeoLib::Point const& pnt) const;
+	/// Returns true if pnt is located on the line segment and false otherwise
+	bool isPntInElement(GeoLib::Point const& pnt) const;
 
 	/**
 		* Tests if the element is geometrically valid.
diff --git a/MeshLib/Elements/TemplatePrism.h b/MeshLib/Elements/TemplatePrism.h
index c390e99e9cf01a8964a99f95f67bddbca1c5b2d6..4b32a2e359cd3c68862baff380b92c0edf987acc 100644
--- a/MeshLib/Elements/TemplatePrism.h
+++ b/MeshLib/Elements/TemplatePrism.h
@@ -102,8 +102,8 @@ public:
 	/// Returns true if these two indeces form an edge and false otherwise
 	bool isEdge(unsigned i, unsigned j) const;
 
-    /// Returns true if the given point is not located outside of the prism
-    bool isPntInElement(GeoLib::Point const& pnt) const;
+	/// Returns true if the given point is not located outside of the prism
+	bool isPntInElement(GeoLib::Point const& pnt) const;
 
 	/**
 	 * Tests if the element is geometrically valid.
diff --git a/MeshLib/Elements/TemplatePyramid.h b/MeshLib/Elements/TemplatePyramid.h
index c12f169cc084833365d454cc09fd51b7ff99e9ea..3c0a0d2f509b6eb44516ac8bfcc66843664b8b2e 100644
--- a/MeshLib/Elements/TemplatePyramid.h
+++ b/MeshLib/Elements/TemplatePyramid.h
@@ -100,8 +100,8 @@ public:
 	/// Returns true if these two indeces form an edge and false otherwise
 	bool isEdge(unsigned i, unsigned j) const;
 
-    /// Returns true if the given point is not located outside of the pyramid
-    bool isPntInElement(GeoLib::Point const& pnt) const;
+	/// Returns true if the given point is not located outside of the pyramid
+	bool isPntInElement(GeoLib::Point const& pnt) const;
 
 	/**
 	 * Tests if the element is geometrically valid.
diff --git a/MeshLib/Elements/TemplateQuad.h b/MeshLib/Elements/TemplateQuad.h
index f7fd8e0889c20cc552a5ae0a556bead3013bbe33..032e16eb70eef34c7bb3923768b26ffc32363d94 100644
--- a/MeshLib/Elements/TemplateQuad.h
+++ b/MeshLib/Elements/TemplateQuad.h
@@ -89,8 +89,8 @@ public:
 	/// Returns true if these two indeces form an edge and false otherwise
 	bool isEdge(unsigned i, unsigned j) const;
 
-    /// Returns true if the given point is not located outside of the quad
-    bool isPntInElement(GeoLib::Point const& pnt) const { return isPntInside(pnt); }
+	/// Returns true if the given point is not located outside of the quad
+	bool isPntInElement(GeoLib::Point const& pnt) const { return isPntInside(pnt); }
 
 	/**
 	 * Check if the 3d GeoLib::Point is inside of the quad element.
diff --git a/MeshLib/Elements/TemplateTet.h b/MeshLib/Elements/TemplateTet.h
index 530cbf0971444e374391a75c45e96978fb5257a8..6b89f18050621f59e9460dfe705089790d021a45 100644
--- a/MeshLib/Elements/TemplateTet.h
+++ b/MeshLib/Elements/TemplateTet.h
@@ -99,8 +99,8 @@ public:
 	/// Returns true if these two indeces form an edge and false otherwise
 	bool isEdge(unsigned i, unsigned j) const;
 
-    /// Returns true if the given point is not located outside of the tetrahedron
-    bool isPntInElement(GeoLib::Point const& pnt) const;
+	/// Returns true if the given point is not located outside of the tetrahedron
+	bool isPntInElement(GeoLib::Point const& pnt) const;
 
 	/**
 	 * Tests if the element is geometrically valid.
diff --git a/MeshLib/Elements/TemplateTri.h b/MeshLib/Elements/TemplateTri.h
index 325efe914b3e72451ee0cd61e2b0bc678e16c519..8f340dd4255b8477719da1ad4c1db1638e802866 100644
--- a/MeshLib/Elements/TemplateTri.h
+++ b/MeshLib/Elements/TemplateTri.h
@@ -93,8 +93,8 @@ public:
 	/// Returns true if these two indices form an edge and false otherwise
 	bool isEdge(unsigned idx1, unsigned idx2) const;
 
-    /// Returns true if the given point is not located outside of the triangle
-    bool isPntInElement(GeoLib::Point const& pnt) const { return isPntInside(pnt); }
+	/// Returns true if the given point is not located outside of the triangle
+	bool isPntInElement(GeoLib::Point const& pnt) const { return isPntInside(pnt); }
 
 	/**
 	 * Check if the 3d GeoLib::Point is inside of the element.
diff --git a/Tests/MeshLib/TestPntInElement.cpp b/Tests/MeshLib/TestPntInElement.cpp
index b4d6b097d1696ee2da2b523ea4336c2264af32a6..20e4a0a138a9aa23341ed47c3aefe88d387dc7f0 100644
--- a/Tests/MeshLib/TestPntInElement.cpp
+++ b/Tests/MeshLib/TestPntInElement.cpp
@@ -27,14 +27,14 @@
 
 std::vector<MeshLib::Node*> createNodes()
 {
-	std::vector<MeshLib::Node*> nodes;
-	nodes.push_back(new MeshLib::Node(0,0,0));
-	nodes.push_back(new MeshLib::Node(1,0,0));
-	nodes.push_back(new MeshLib::Node(1,1,0));
+    std::vector<MeshLib::Node*> nodes;
+    nodes.push_back(new MeshLib::Node(0,0,0));
+    nodes.push_back(new MeshLib::Node(1,0,0));
+    nodes.push_back(new MeshLib::Node(1,1,0));
     nodes.push_back(new MeshLib::Node(0,1,0));
-	nodes.push_back(new MeshLib::Node(0,0,1));
-	nodes.push_back(new MeshLib::Node(1,0,1));
-	nodes.push_back(new MeshLib::Node(1,1,1));
+    nodes.push_back(new MeshLib::Node(0,0,1));
+    nodes.push_back(new MeshLib::Node(1,0,1));
+    nodes.push_back(new MeshLib::Node(1,1,1));
     nodes.push_back(new MeshLib::Node(0,1,1));
     return nodes;
 }
@@ -93,4 +93,4 @@ TEST(IsPntInElement, Hex)
     ASSERT_EQ(true, hex.isPntInElement(pnt));
     pnt = GeoLib::Point(1.01,0.99,0.99);
     ASSERT_EQ(false, hex.isPntInElement(pnt));
-}
\ No newline at end of file
+}