diff --git a/Applications/DataExplorer/DataView/DiagramView/DiagramView.cpp b/Applications/DataExplorer/DataView/DiagramView/DiagramView.cpp
index caf300686d54d98d5f573efafd12f0fbae9d5d10..aef2e3a487233dec4fd77c4907aa8bc515206e10 100644
--- a/Applications/DataExplorer/DataView/DiagramView/DiagramView.cpp
+++ b/Applications/DataExplorer/DataView/DiagramView/DiagramView.cpp
@@ -70,7 +70,7 @@ void DiagramView::initialize()
  * It is only necessary to call this if
  *        Qt::AspectRatioMode == Qt::IgnoreAspectRatio.
  * Also, this method is kind of annoying because you have to set the
- * appropriate transform for every single QGraphicsTextItem seperately.
+ * appropriate transform for every single QGraphicsTextItem separately.
  */
 /*
    void DiagramView::keepItemAspectRatio()
diff --git a/GeoLib/StationBorehole.h b/GeoLib/StationBorehole.h
index 75aabe6a4a4e5dd97c5946b97306ce4e1709e446..dc5f1dcad0aaf9605ce1b787cd64122762e0cce7 100644
--- a/GeoLib/StationBorehole.h
+++ b/GeoLib/StationBorehole.h
@@ -89,7 +89,7 @@ public:
      * Note: The given coordinates always mark THE END of the soil layer. The reason behind this is
      * that the beginning of the first layer is identical with the position of the borehole. For each
      * layer following the beginning is already given by the end of the last layer. This also saves
-     * a seperate entry in the profile vector for the end of the borehole which in the given notation
+     * a separate entry in the profile vector for the end of the borehole which in the given notation
      * is just the coordinate given for the last soil layer (i.e. the end of that layer).
      */
     void addSoilLayer ( double x, double y, double z, const std::string &soil_name);
diff --git a/MeshLib/MeshEditing/MeshRevision.h b/MeshLib/MeshEditing/MeshRevision.h
index adaff5f181008bc3b0d946530388f2d1df1e7253..df0ed75bd58a05d2a0802ab7c9410b882d83ed83 100644
--- a/MeshLib/MeshEditing/MeshRevision.h
+++ b/MeshLib/MeshEditing/MeshRevision.h
@@ -48,7 +48,7 @@ public:
      * Collapsed all nodes with distance < eps but ignores elements
      * (i.e. elements with collapsed nodes may result)
      * This is implicitely called when calling simplifyMesh(), so it does not need to be
-     * called seperately when using simplifyMesh().
+     * called separately when using simplifyMesh().
      */
     MeshLib::Mesh* collapseNodes(const std::string &new_mesh_name, double eps);
 
diff --git a/MeshLib/MeshQuality/ElementQualityInterface.h b/MeshLib/MeshQuality/ElementQualityInterface.h
index 2cc8d85508e3e2ff39505b0d4f0a83d8ca012a9a..9efa43ad7c5f38cee27c75259215155626d0a159 100644
--- a/MeshLib/MeshQuality/ElementQualityInterface.h
+++ b/MeshLib/MeshQuality/ElementQualityInterface.h
@@ -59,7 +59,7 @@ public:
         return empty_quality_vec;
     }
 
-    /// Returns a histogram of the quality vector seperated into the given number of bins.
+    /// Returns a histogram of the quality vector separated into the given number of bins.
     /// If no number of bins is specified, one will be calculated based on the Sturges criterium.
     BaseLib::Histogram<double> getHistogram(std::size_t n_bins = 0) const
     {
diff --git a/MeshLib/MeshQuality/ElementQualityMetric.h b/MeshLib/MeshQuality/ElementQualityMetric.h
index b589af6714a21d995c1fc9ebfb8ad128d5b07b36..22d4a0de6fca93a245bf03686139a7c6bf204501 100644
--- a/MeshLib/MeshQuality/ElementQualityMetric.h
+++ b/MeshLib/MeshQuality/ElementQualityMetric.h
@@ -49,7 +49,7 @@ public:
     /// Returns the maximum calculated value
     double getMaxValue() const;
 
-    /// Returns a histogram of the quality vector seperated into the given number of bins.
+    /// Returns a histogram of the quality vector separated into the given number of bins.
     /// If no number of bins is specified, one will be calculated based on the Sturges criterium.
     virtual BaseLib::Histogram<double> getHistogram (std::size_t n_bins = 0) const;