diff --git a/Core/Export/SimulationToPython.cpp b/Core/Export/SimulationToPython.cpp
index e2101ed1e881accfc79eed28ddf1c95df794e752..6d061deae7d2534a2012aa0bcd35f3c7c632e81d 100644
--- a/Core/Export/SimulationToPython.cpp
+++ b/Core/Export/SimulationToPython.cpp
@@ -63,7 +63,7 @@ bool isQuadraticDetector(const IDetector2D& det)
     return true;
 }
 
-//! returns true if it is (0, -1, 0) vector
+//! Returns true if it is (0, -1, 0) vector
 bool isDefaultDirection(const R3 direction)
 {
     return BaseUtils::algo::almostEqual(direction.x(), 0.0)
diff --git a/Core/Fitting/SimDataPair.h b/Core/Fitting/SimDataPair.h
index 3851f5c519a4b82c59f3080d4aaa8fa6d755d0f6..db90794e358a5983f1e32324840acd94bf4020ef 100644
--- a/Core/Fitting/SimDataPair.h
+++ b/Core/Fitting/SimDataPair.h
@@ -73,7 +73,7 @@ public:
 
     //! Returns the flattened experimental uncertainties
     //! cut to the ROI area. If no uncertainties are available,
-    //! returns a zero-filled array sized to the ROI area.
+    //! Returns a zero-filled array sized to the ROI area.
     std::vector<double> uncertainties_array() const;
 
     //! Returns a flat array of user weights cut to the ROI area.
diff --git a/Device/Data/OutputData.h b/Device/Data/OutputData.h
index b7b84bce6d46cb00ce42d250448c33de84973f7d..02312b0c1756eadd5b0ea919815589237cee5959 100644
--- a/Device/Data/OutputData.h
+++ b/Device/Data/OutputData.h
@@ -49,7 +49,7 @@ public:
     void addAxis(const std::string& name, size_t size, double start, double end);
 
     const CloneableVector<IAxis>& axes() const { return m_axes; }
-    //! returns axis with given serial number
+    //! Returns axis with given serial number
     const IAxis& axis(size_t serial_number) const;
 
     // retrieve basic info
diff --git a/Device/Detector/RectangularDetector.h b/Device/Detector/RectangularDetector.h
index 1b594314a1796c0f62b601acabf743e602c8cea2..5c5ddf040a379e351e9f98c8da5cf5baa9a9c19a 100644
--- a/Device/Detector/RectangularDetector.h
+++ b/Device/Detector/RectangularDetector.h
@@ -70,7 +70,7 @@ public:
     double getDirectBeamV0() const;
     EDetectorArrangement getDetectorArrangment() const;
 
-    //! return default axes units
+    //! Returns default axes units
     Axes::Coords defaultCoords() const override { return Axes::Coords::MM; }
 
     RectangularPixel* regionOfInterestPixel() const;
diff --git a/Device/Detector/SphericalDetector.h b/Device/Detector/SphericalDetector.h
index b2850abcf06795512907c54acebb39dd514a2e3e..5974adb645a5cc9d4aea409321cc3becafe2bb31 100644
--- a/Device/Detector/SphericalDetector.h
+++ b/Device/Detector/SphericalDetector.h
@@ -50,7 +50,7 @@ public:
     SphericalDetector* clone() const override;
     std::string className() const override { return "SphericalDetector"; }
 
-    //! return default axes units
+    //! Returns default axes units
     Axes::Coords defaultCoords() const override { return Axes::Coords::RADIANS; }
 
 protected:
diff --git a/Device/Histo/Histogram1D.h b/Device/Histo/Histogram1D.h
index bbd066274e42536f5aee6b47e1122ba1a0a549ca..91a9edd6831abb213063219da22b3bfa2c704195 100644
--- a/Device/Histo/Histogram1D.h
+++ b/Device/Histo/Histogram1D.h
@@ -49,13 +49,13 @@ public:
     //! Increment bin with abscissa x with a weight.
     int fill(double x, double weight = 1.0);
 
-    //! returns vector of histogram bin centers
+    //! Returns vector of histogram bin centers
     std::vector<double> binCenters() const;
 
-    //! returns vector of bin content (the value accumulated by bins)
+    //! Returns vector of bin content (the value accumulated by bins)
     std::vector<double> binValues() const;
 
-    //! returns vector of bin errors
+    //! Returns vector of bin errors
     std::vector<double> binErrors() const;
 
 #ifdef BA_PYTHON
diff --git a/Device/Histo/IHistogram.cpp b/Device/Histo/IHistogram.cpp
index f69e6e367d804d7712949babc1e2d45141287c8f..fc88d5b2dae747a9a53fa78a16b7f8175e1ed3bd 100644
--- a/Device/Histo/IHistogram.cpp
+++ b/Device/Histo/IHistogram.cpp
@@ -296,7 +296,7 @@ void IHistogram::init_from_data(const OutputData<double>& source)
         m_data[i].add(source[i]);
 }
 
-//! returns data of requested type for globalbin number
+//! Returns data of requested type for globalbin number
 double IHistogram::binData(size_t i, IHistogram::DataType dataType) const
 {
     if (dataType == DataType::INTEGRAL)
@@ -310,7 +310,7 @@ double IHistogram::binData(size_t i, IHistogram::DataType dataType) const
     throw std::runtime_error("IHistogram::binData() -> Error. Unknown data type.");
 }
 
-//! returns vector of values of requested DataType
+//! Returns vector of values of requested DataType
 std::vector<double> IHistogram::getDataVector(IHistogram::DataType dataType) const
 {
     std::vector<double> result;
diff --git a/Device/Histo/SimulationResult.h b/Device/Histo/SimulationResult.h
index b6af0e00ab7af092cbf33fcebd4773a03c76996b..b43fae7098f3c2edb4721551481ac980c2a3bb53 100644
--- a/Device/Histo/SimulationResult.h
+++ b/Device/Histo/SimulationResult.h
@@ -68,7 +68,7 @@ public:
     double max() const;
     bool empty() const { return size() == 0; }
 
-    //! returns intensity data as Python numpy array
+    //! Returns intensity data as Python numpy array
 #ifdef BA_PYTHON
     PyObject* array(Axes::Coords units = Axes::Coords::UNDEFINED) const;
 #endif
@@ -76,7 +76,7 @@ public:
     std::vector<double> convertedBinCenters(Axes::Coords units = Axes::Coords::UNDEFINED) const;
 
     //! Returns axis coordinates as a numpy array. With no parameters given
-    //! returns coordinates of x-axis in default units.
+    //! Returns coordinates of x-axis in default units.
     std::vector<double> convertedBinCenters(size_t i_axis,
                                             Axes::Coords units = Axes::Coords::UNDEFINED) const;
 
diff --git a/Device/InputOutput/DataFormatUtils.h b/Device/InputOutput/DataFormatUtils.h
index 3d7266cd8db3196fa0b9d9b7b977bbb2e9489644..e24152c3bd4cc4a02ac5f338772ea92c2eed13de 100644
--- a/Device/InputOutput/DataFormatUtils.h
+++ b/Device/InputOutput/DataFormatUtils.h
@@ -43,13 +43,13 @@ bool isBZipped(const std::string& name);
 //! Returns file extension after stripping '.gz' if any
 std::string GetFileMainExtension(const std::string& name);
 
-//! returns true if file name corresponds to BornAgain native format (compressed or not)
+//! Returns true if file name corresponds to BornAgain native format (compressed or not)
 bool isIntFile(const std::string& file_name);
 
-//! returns true if file name corresponds to Nicos format (compressed or not)
+//! Returns true if file name corresponds to Nicos format (compressed or not)
 bool isNicosFile(const std::string& file_name);
 
-//! returns true if file name corresponds to tiff file (can be also compressed)
+//! Returns true if file name corresponds to tiff file (can be also compressed)
 bool isTiffFile(const std::string& file_name);
 
 std::unique_ptr<IAxis> createAxis(std::istream& input_stream);
diff --git a/Device/Mask/DetectorMask.h b/Device/Mask/DetectorMask.h
index e0c1b79cb4bbcf5e3775b09b484a22deafe22bc2..79649f6d70db379d36c493b3966f6171e4134c6a 100644
--- a/Device/Mask/DetectorMask.h
+++ b/Device/Mask/DetectorMask.h
@@ -47,7 +47,7 @@ public:
 
     Histogram2D* createHistogram() const;
 
-    //! returns true if has masks
+    //! Returns true if has masks
     bool hasMasks() const { return !m_shapes.empty(); }
 
     int numberOfMaskedChannels() const { return m_number_of_masked_channels; }
diff --git a/Fit/Param/RealLimits.h b/Fit/Param/RealLimits.h
index 28ad70dfbf89c11f0e8eb70f8d16c0d4d1c15cce..a928c3fc4a3956ba58416db5759066d4bf9c8e61 100644
--- a/Fit/Param/RealLimits.h
+++ b/Fit/Param/RealLimits.h
@@ -62,7 +62,7 @@ public:
     //! remove limits
     void removeLimits();
 
-    //! returns true if proposed value is in limits range
+    //! Returns true if proposed value is in limits range
     bool isInRange(double value) const;
 
     //! Creates an object bounded from the left
diff --git a/Fit/Tools/WallclockTimer.h b/Fit/Tools/WallclockTimer.h
index 8d350a5c1fbc55e2901c8d5f2ab05c17d32677b9..8a893814673941d65d04fb4796ccbaa72dfd488d 100644
--- a/Fit/Tools/WallclockTimer.h
+++ b/Fit/Tools/WallclockTimer.h
@@ -34,7 +34,7 @@ public:
     void start();
     void stop();
 
-    //! returns run time in sec.
+    //! Returns run time in sec.
     double runTime() const;
 
 private:
diff --git a/GUI/Model/Data/Data1DViewItem.h b/GUI/Model/Data/Data1DViewItem.h
index 603e8925e72236b834208b051d8953054ceddb16..1080e3ec53fb1eec51dd1019230dd412d768af3f 100644
--- a/GUI/Model/Data/Data1DViewItem.h
+++ b/GUI/Model/Data/Data1DViewItem.h
@@ -47,11 +47,11 @@ public:
     //! Number of bins in data
     int getNbins() const;
 
-    //! returns lower and upper zoom ranges of x-axis
+    //! Returns lower and upper zoom ranges of x-axis
     double getLowerX() const;
     double getUpperX() const;
 
-    //! returns lower and upper zoom ranges of y-axis
+    //! Returns lower and upper zoom ranges of y-axis
     double getLowerY() const;
     double getUpperY() const;
 
diff --git a/GUI/Model/Data/DataProperties.h b/GUI/Model/Data/DataProperties.h
index 213e0dc20eedeef9c4e7a0da2a4872d3aa40d028..d71aab4b542b49c3a44f2946db95a0a71ff9068a 100644
--- a/GUI/Model/Data/DataProperties.h
+++ b/GUI/Model/Data/DataProperties.h
@@ -55,7 +55,7 @@ public:
 
     //! Returns the name of the color, which follows the color of passes property
     //! container. If the container is nullptr or has the last-in-queue color,
-    //! returns default color.
+    //! Returns default color.
     static const QString& nextColorName(Data1DProperties* properties);
 };
 
diff --git a/GUI/Model/Data/SpecularDataItem.h b/GUI/Model/Data/SpecularDataItem.h
index 7099d4fd341d8a8f9585f891ec6f1ef2efaa6cd0..da3e715077ce569cc954b8dd63bf0392b03f3c67 100644
--- a/GUI/Model/Data/SpecularDataItem.h
+++ b/GUI/Model/Data/SpecularDataItem.h
@@ -36,19 +36,19 @@ public:
     //! Number of bins in data
     int getNbins() const;
 
-    //! returns lower and upper zoom ranges of x-axis
+    //! Returns lower and upper zoom ranges of x-axis
     double getLowerX() const;
     double getUpperX() const;
 
-    //! returns min and max range of x-axis as given by IntensityData
+    //! Returns min and max range of x-axis as given by IntensityData
     double xMin() const;
     double xMax() const;
 
-    //! returns lower and upper zoom ranges of y-axis
+    //! Returns lower and upper zoom ranges of y-axis
     double getLowerY() const;
     double getUpperY() const;
 
-    //! returns min and max range of y-axis as given by IntensityData
+    //! Returns min and max range of y-axis as given by IntensityData
     double yMin() const;
     double yMax() const;
 
diff --git a/GUI/Model/Device/DetectorItems.h b/GUI/Model/Device/DetectorItems.h
index 6505441a09f6d54e279f80a9ee8607e5be9764bb..9510e78865ba1cf072c66077020d001530f0c889 100644
--- a/GUI/Model/Device/DetectorItems.h
+++ b/GUI/Model/Device/DetectorItems.h
@@ -33,10 +33,10 @@ public:
     std::unique_ptr<IDetector2D> createDetector() const;
     virtual void serialize(Serializer& s) = 0;
 
-    //! returns the size of x-axis of the detector
+    //! Returns the size of x-axis of the detector
     virtual int xSize() const = 0;
 
-    //! returns the size of y-axis of the detector
+    //! Returns the size of y-axis of the detector
     virtual int ySize() const = 0;
 
     //! sets the size of x-axis of the detector
diff --git a/GUI/Model/Job/FitParameterContainerItem.cpp b/GUI/Model/Job/FitParameterContainerItem.cpp
index 1dd080816575d6e22cf5109db98aff5dadfd1926..86f50f571bcce508a2225453c250b9c5095adbc8 100644
--- a/GUI/Model/Job/FitParameterContainerItem.cpp
+++ b/GUI/Model/Job/FitParameterContainerItem.cpp
@@ -53,7 +53,7 @@ void FitParameterContainerItem::addToFitParameter(ParameterItem* parameterItem,
     }
 }
 
-//! returns FitParameterItem for given link (path in model)
+//! Returns FitParameterItem for given link (path in model)
 
 FitParameterItem* FitParameterContainerItem::fitParameterItem(const QString& link) const
 {
diff --git a/GUI/Util/ComboProperty.cpp b/GUI/Util/ComboProperty.cpp
index 2784b37b6d0726f11e24aa228e63bbb29195ab85..a465bebe1c7a3ee0ca97a423ec86bd70e21d7bd4 100644
--- a/GUI/Util/ComboProperty.cpp
+++ b/GUI/Util/ComboProperty.cpp
@@ -69,7 +69,7 @@ void ComboProperty::setValues(const QStringList& values)
     setCurrentIndex(m_values.contains(current) ? m_values.indexOf(current) : 0);
 }
 
-//! returns list of tool tips for all values
+//! Returns list of tool tips for all values
 QStringList ComboProperty::toolTips() const
 {
     return m_tooltips;
diff --git a/GUI/Util/CoordName.h b/GUI/Util/CoordName.h
index 83b744da0b70ec18f59f173ddd455d32e7355e98..8d538f8cb65da5289db4b6936d393dd9d32f8858 100644
--- a/GUI/Util/CoordName.h
+++ b/GUI/Util/CoordName.h
@@ -22,10 +22,10 @@
 
 namespace GUI::Util::CoordName {
 
-//! returns axes units names from their domain counterpart
+//! Returns axes units names from their domain counterpart
 QString nameFromCoord(Axes::Coords units);
 
-//! returns domain axes units type from their GUI name
+//! Returns domain axes units type from their GUI name
 Axes::Coords coordFromName(const QString& name);
 
 } // namespace GUI::Util::CoordName
diff --git a/GUI/Util/Path.cpp b/GUI/Util/Path.cpp
index 99693c0a3f0515a546c45f20939ccaade25cc4a3..c24748dc4898e02ba21320c56a57c06c860626c1 100644
--- a/GUI/Util/Path.cpp
+++ b/GUI/Util/Path.cpp
@@ -113,7 +113,7 @@ int GUI::Util::Path::versionCode(const QString& version)
     return result;
 }
 
-//! returns true if current BornAgain version match minimal required version
+//! Returns true if current BornAgain version match minimal required version
 bool GUI::Util::Path::isVersionMatchMinimal(const QString& version, const QString& minimal_version)
 {
     return versionCode(version) >= versionCode(minimal_version);
diff --git a/GUI/View/Instrument/InstrumentLibraryEditor.h b/GUI/View/Instrument/InstrumentLibraryEditor.h
index e81a832087b5cfb1bb3b63b76d1eea03ae88ad7b..44ccf0bf5da0736c67b821f5f0c249a490538ca2 100644
--- a/GUI/View/Instrument/InstrumentLibraryEditor.h
+++ b/GUI/View/Instrument/InstrumentLibraryEditor.h
@@ -38,7 +38,7 @@ public:
     void setDepthProbeEnabled(bool b);
 
     //! Execute the dialog for choosing an instrument from the library.
-    //! return nullptr if canceled
+    //! Returns nullptr if canceled
     InstrumentItem* execChoose();
 
     //! Execute the dialog to add an instrument to the library.
diff --git a/GUI/View/Job/JobListViewDelegate.cpp b/GUI/View/Job/JobListViewDelegate.cpp
index e0ba39f808a326a7136393b75c6a27aacd59a5e4..7d328d22d5ff6e1d1329d480742f9f573692b2cd 100644
--- a/GUI/View/Job/JobListViewDelegate.cpp
+++ b/GUI/View/Job/JobListViewDelegate.cpp
@@ -126,7 +126,7 @@ void JobListViewDelegate::drawCustomProjectBar(const JobItem* item, QPainter* pa
     painter->restore();
 }
 
-//! returns rectangle for text
+//! Returns rectangle for text
 QRect JobListViewDelegate::getTextRect(QRect optionRect) const
 {
     int width = optionRect.width() * 0.4;
@@ -137,7 +137,7 @@ QRect JobListViewDelegate::getTextRect(QRect optionRect) const
     return result;
 }
 
-//! returns rectangle for progress bar
+//! Returns rectangle for progress bar
 QRect JobListViewDelegate::getProgressBarRect(QRect optionRect) const
 {
     int width = optionRect.width() * 0.4;
@@ -148,7 +148,7 @@ QRect JobListViewDelegate::getProgressBarRect(QRect optionRect) const
     return result;
 }
 
-//! returns rectangle for button
+//! Returns rectangle for button
 QRect JobListViewDelegate::getButtonRect(QRect optionRect) const
 {
     int height = 10;
diff --git a/GUI/View/Mask/ColorMapSceneAdaptor.h b/GUI/View/Mask/ColorMapSceneAdaptor.h
index 139ead585f9e2823202f1a44ae5902cf35d03f0b..38c7c5facb9bf0f5c5061aba5a2d874ca7e72d45 100644
--- a/GUI/View/Mask/ColorMapSceneAdaptor.h
+++ b/GUI/View/Mask/ColorMapSceneAdaptor.h
@@ -36,7 +36,7 @@ public:
 
     bool eventFilter(QObject* object, QEvent* event) override;
 
-    //! returns ColorMapPlot axes rectangle (at current zoom level) in scene coordinates
+    //! Returns ColorMapPlot axes rectangle (at current zoom level) in scene coordinates
     const QRectF& viewportRectangle() const override;
 
 private:
diff --git a/GUI/View/Mask/EllipseView.cpp b/GUI/View/Mask/EllipseView.cpp
index 57b451e20c97c9c91c06c2e35ae260d74f6ef97b..a458846bc28b5195ba0797a442dbe22202094e4f 100644
--- a/GUI/View/Mask/EllipseView.cpp
+++ b/GUI/View/Mask/EllipseView.cpp
@@ -127,14 +127,14 @@ QRectF EllipseView::mask_rectangle()
     return QRectF(-width() / 2., -height() / 2., width(), height());
 }
 
-//! returns the x-coordinate of the rectangle's left edge
+//! Returns the x-coordinate of the rectangle's left edge
 
 qreal EllipseView::left() const
 {
     return toSceneX(m_item->xCenter() - m_item->xRadius());
 }
 
-//! returns the x-coordinate of the rectangle's right edge
+//! Returns the x-coordinate of the rectangle's right edge
 
 qreal EllipseView::right() const
 {
diff --git a/GUI/View/Mask/ISceneAdaptor.h b/GUI/View/Mask/ISceneAdaptor.h
index f1fdcc098aa9f05019bfe1aba7570a82e9aa8baa..5c94d3b863cbe00fbd3e2e28d3d5d980ff4584c4 100644
--- a/GUI/View/Mask/ISceneAdaptor.h
+++ b/GUI/View/Mask/ISceneAdaptor.h
@@ -35,7 +35,7 @@ public:
     //! convert scene y-coordinate to native mask coordinate
     virtual qreal fromSceneY(qreal) const = 0;
 
-    //! returns viewport rectangle in scene coordinates
+    //! Returns viewport rectangle in scene coordinates
     virtual const QRectF& viewportRectangle() const { return m_viewport_rectangle; }
 
 signals:
diff --git a/GUI/View/Mask/MaskDrawingContext.cpp b/GUI/View/Mask/MaskDrawingContext.cpp
index 7356b9f7b0c860e77f6df766c8952c315a4a0c4e..8c838d3337dc179afc5cbd59beb5334d7e7efd98 100644
--- a/GUI/View/Mask/MaskDrawingContext.cpp
+++ b/GUI/View/Mask/MaskDrawingContext.cpp
@@ -109,7 +109,7 @@ bool MaskDrawingContext::getMaskValue() const
     return bool(m_mask_value);
 }
 
-//! return true, if proposed activity requires the cancel of drawing
+//! Returns true, if proposed activity requires the cancel of drawing
 //! i.e. there is an ungoing polygon drawing, but user wants to start other drawing
 bool MaskDrawingContext::isActivityRequiresDrawingCancel(
     MaskEditorFlags::Activity proposed_new_activity) const
diff --git a/GUI/View/Mask/PolygonView.cpp b/GUI/View/Mask/PolygonView.cpp
index aca0d35a0628076cf480fb895be057bb0454adb0..58d0ee8b3ea0b72104e6b6acb215ed2ddf014d36 100644
--- a/GUI/View/Mask/PolygonView.cpp
+++ b/GUI/View/Mask/PolygonView.cpp
@@ -68,7 +68,7 @@ void PolygonView::addView(IShape2DView* childView, int row)
             &PolygonView::onClosePolygonRequest);
 }
 
-//! returns last added poligon point in scene coordinates
+//! Returns last added poligon point in scene coordinates
 QPointF PolygonView::lastAddedPoint() const
 {
     return !childItems().empty() ? childItems().back()->scenePos() : QPointF();
diff --git a/GUI/View/Mask/RectangleBaseView.cpp b/GUI/View/Mask/RectangleBaseView.cpp
index d54c887a9028f0981362f5e5212931e8db306944..ac5d91dd157b8efb1993ab1126d4ad7233ec9e10 100644
--- a/GUI/View/Mask/RectangleBaseView.cpp
+++ b/GUI/View/Mask/RectangleBaseView.cpp
@@ -88,7 +88,7 @@ void RectangleBaseView::update_bounding_rect()
     }
 }
 
-//! returns width of the rectangle
+//! Returns width of the rectangle
 
 qreal RectangleBaseView::width() const
 {
diff --git a/GUI/View/Mask/RectangleView.cpp b/GUI/View/Mask/RectangleView.cpp
index 703e4bfe8fc96e0c151da0cf9ce7b29a82fc2fd5..5e372c639e3996e089de79970049f9b640f35357 100644
--- a/GUI/View/Mask/RectangleView.cpp
+++ b/GUI/View/Mask/RectangleView.cpp
@@ -99,14 +99,14 @@ QRectF RectangleView::mask_rectangle()
     return QRectF(0.0, 0.0, width(), height());
 }
 
-//! returns the x-coordinate of the rectangle's left edge
+//! Returns the x-coordinate of the rectangle's left edge
 
 qreal RectangleView::left() const
 {
     return toSceneX(m_item->xLow());
 }
 
-//! returns the x-coordinate of the rectangle's right edge
+//! Returns the x-coordinate of the rectangle's right edge
 
 qreal RectangleView::right() const
 {
diff --git a/GUI/View/PlotUtil/ColorMap.h b/GUI/View/PlotUtil/ColorMap.h
index 35ea5154ed2692e2fb413854a5b36a3bf76744ee..b41ea0e3e78e8e39c9677ccbcf695d891308a98d 100644
--- a/GUI/View/PlotUtil/ColorMap.h
+++ b/GUI/View/PlotUtil/ColorMap.h
@@ -46,7 +46,7 @@ public:
     const QCustomPlot* customPlot() const override { return m_customPlot; }
     QCPColorScale* colorScale() { return m_colorScale; }
 
-    //! returns rectangle representing current axes zoom state in widget coordinates
+    //! Returns rectangle representing current axes zoom state in widget coordinates
     QRectF viewportRectangleInWidgetCoordinates();
 
     //! Returns PlotEventInfo corresponding to given axes coordinates.
diff --git a/GUI/View/Project/PyImportAssistant.cpp b/GUI/View/Project/PyImportAssistant.cpp
index 63691cd71603e23e2c6a81262e956b4620448df7..3ce3e621a34d80ff68503c33bad6b71800a9cdec 100644
--- a/GUI/View/Project/PyImportAssistant.cpp
+++ b/GUI/View/Project/PyImportAssistant.cpp
@@ -38,7 +38,7 @@
 namespace {
 
 //! Returns directory with BornAgain library. If PYTHONPATH is not empty,
-//! returns an empty string.
+//! Returns an empty string.
 
 std::string bornagainDir()
 {
diff --git a/GUI/View/Tool/DesignerHelper.h b/GUI/View/Tool/DesignerHelper.h
index 08d9e251f470b1bf12678db648ad7c3d581aeab9..9c18831bb6ee7c9948235d8d79cec2a69533ca25 100644
--- a/GUI/View/Tool/DesignerHelper.h
+++ b/GUI/View/Tool/DesignerHelper.h
@@ -18,7 +18,7 @@
 //! collection of static methods with SampleDesigner geometry settings
 class DesignerHelper {
 public:
-    //! returns system dependent font size
+    //! Returns system dependent font size
     static int getSectionFontSize();
     static int getLabelFontSize();
     static int getPortFontSize();