Skip to content

Commit

Permalink
[Ink] Fix documentation for enum types. (#8090)
Browse files Browse the repository at this point in the history
The comment position for the enumeration types of bounded/unbounded ink attached the documentation to the wrong values.

PiperOrigin-RevId: 259979073
  • Loading branch information
Robert Moore committed Jul 25, 2019
1 parent e64c440 commit 99f2aec
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/Ink/src/MDCInkView.h
Expand Up @@ -21,8 +21,10 @@ typedef void (^MDCInkCompletionBlock)(void);

/** Ink styles. */
typedef NS_ENUM(NSInteger, MDCInkStyle) {
MDCInkStyleBounded, /** Ink is clipped to the view's bounds. */
MDCInkStyleUnbounded /** Ink is not clipped to the view's bounds. */
/** Ink is clipped to the view's bounds. */
MDCInkStyleBounded,
/** Ink is not clipped to the view's bounds. */
MDCInkStyleUnbounded
};

/**
Expand Down

0 comments on commit 99f2aec

Please sign in to comment.