From 5cc4b2b8b5a5d205d928a12dfaecfc03f54b09ec Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Thu, 24 Nov 2016 11:23:26 +0100 Subject: [PATCH] Fix spelling error of separated. --- Applications/DataExplorer/DataView/DiagramView/DiagramView.cpp | 2 +- GeoLib/StationBorehole.h | 2 +- MeshLib/MeshEditing/MeshRevision.h | 2 +- MeshLib/MeshQuality/ElementQualityInterface.h | 2 +- MeshLib/MeshQuality/ElementQualityMetric.h | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Applications/DataExplorer/DataView/DiagramView/DiagramView.cpp b/Applications/DataExplorer/DataView/DiagramView/DiagramView.cpp index caf300686d5..aef2e3a4872 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 75aabe6a4a4..dc5f1dcad0a 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 adaff5f1810..df0ed75bd58 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 2cc8d85508e..9efa43ad7c5 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 b589af6714a..22d4a0de6fc 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; -- GitLab