Skip to content

Commit

Permalink
DOC: Fix typo in itkRGBPixel.h
Browse files Browse the repository at this point in the history
Blug --> Blue
  • Loading branch information
issakomi authored and N-Dekker committed Feb 24, 2024
1 parent b554b99 commit adcc46b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Modules/Core/Common/include/itkRGBPixel.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,13 +84,13 @@ class ITK_TEMPLATE_EXPORT RGBPixel : public FixedArray<TComponent, 3>
#endif

#if defined(ITK_LEGACY_REMOVE)
/** Explicit constructor to fill Red=Blug=Green= r. */
/** Explicit constructor to fill Red=Blue=Green= r. */
explicit RGBPixel(const ComponentType & r) { this->Fill(r); }

/** Prevents copy-initialization from `nullptr`, as well as from `0` (NULL). */
RGBPixel(std::nullptr_t) = delete;
#else
/** Constructor to fill Red=Blug=Green= r.
/** Constructor to fill Red=Blue=Green= r.
* \note ITK_LEGACY_REMOVE=ON will disallow implicit conversion from a component value. */
RGBPixel(const ComponentType & r) { this->Fill(r); }
#endif
Expand Down

0 comments on commit adcc46b

Please sign in to comment.