diff --git a/src/ImageManipulation.cpp b/src/ImageManipulation.cpp index de16896d9..561221b70 100644 --- a/src/ImageManipulation.cpp +++ b/src/ImageManipulation.cpp @@ -99,7 +99,7 @@ std::unique_ptr ChangeImageColour(wxImage * srcImage, /// Takes a background image, foreground image, and mask /// (i.e. the alpha channel for the foreground), and -/// returns an NEW image where the foreground has been +/// returns a NEW image where the foreground has been /// overlaid onto the background using alpha-blending, /// at location (xoff, yoff). std::unique_ptr OverlayImage(wxImage * background, wxImage * foreground, @@ -165,7 +165,7 @@ std::unique_ptr OverlayImage(wxImage * background, wxImage * foreground /// Takes a background image, foreground image, and mask /// (i.e. the alpha channel for the foreground), and -/// returns an NEW image where the foreground has been +/// returns a NEW image where the foreground has been /// overlaid onto the background using alpha-blending, /// at location (xoff, yoff). std::unique_ptr OverlayImage(teBmps eBack, teBmps eForeground, diff --git a/src/ImageManipulation.h b/src/ImageManipulation.h index d668cc3a0..7262cbb30 100644 --- a/src/ImageManipulation.h +++ b/src/ImageManipulation.h @@ -33,7 +33,7 @@ std::unique_ptr ChangeImageColour(wxImage * srcImage, // Takes a background image, foreground image, and mask // (i.e. the alpha channel for the foreground), and -// returns an NEW image where the foreground has been +// returns a NEW image where the foreground has been // overlaid onto the background using alpha-blending, // at location (xoff, yoff). std::unique_ptr OverlayImage(wxImage * background, wxImage * foreground, diff --git a/src/WaveTrack.h b/src/WaveTrack.h index a369c6f2c..eab9b2c6e 100644 --- a/src/WaveTrack.h +++ b/src/WaveTrack.h @@ -327,7 +327,7 @@ private: * @return The number of samples from the start of the track which lie before the given time. */ sampleCount TimeToLongSamples(double t0) const; - /** @brief Convert correctly between an number of samples and an (absolute) time in seconds. + /** @brief Convert correctly between a number of samples and an (absolute) time in seconds. * * @param pos The time number of samples from the start of the track to convert. * @return The time in seconds.