Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ptahmose committed Dec 11, 2024
1 parent a734238 commit d83f9ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Src/libCZI/libCZI_Pixels.h
Original file line number Diff line number Diff line change
Expand Up @@ -202,14 +202,14 @@ namespace libCZI
/// \return The pixel type.
virtual PixelType GetPixelType() const = 0;

/// Gets the size of the bitmap (i. e. its width and height in pixels).
/// Gets the size of the bitmap (i.e. its width and height in pixels).
///
/// \return The size (in pixels).
virtual IntSize GetSize() const = 0;

/// Gets a data structure allowing for direct access of the bitmap.
///
/// The BitmapLockInfo returned must only considered to be valid until Unlock is called.
/// The BitmapLockInfo returned must only be considered to be valid until Unlock is called.
/// It is legal to call Lock multiple time (also from different threads concurrently).
/// In any case, calls to Lock and Unlock must be balanced. It is considered to be a
/// fatal error if the object is destroyed when it is locked.
Expand All @@ -220,7 +220,7 @@ namespace libCZI
/// Inform the bitmap object that the data (previously retrieved by a call to Lock)
/// is not longer used.
///
/// The BitmapLockInfo returned must only considered to be valid until Unlock is called.
/// The BitmapLockInfo returned must only be considered to be valid until Unlock is called.
virtual void Unlock() = 0;

virtual ~IBitmapData() {}
Expand Down

0 comments on commit d83f9ca

Please sign in to comment.