aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPathMeasure.h
diff options
context:
space:
mode:
authorGravatar caryclark <caryclark@google.com>2016-03-23 11:15:57 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-23 11:15:57 -0700
commita567dde7fc667556e12ef6973a4ea03afb1dfbeb (patch)
tree82fa5df2348d171dfb60914c1bee8376a6b7b538 /include/core/SkPathMeasure.h
parent633b35657c964c32e7010b14bb2d396b4a764c52 (diff)
fix path getSegment comment
Diffstat (limited to 'include/core/SkPathMeasure.h')
-rw-r--r--include/core/SkPathMeasure.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkPathMeasure.h b/include/core/SkPathMeasure.h
index ceea97f69a..2a512b8c38 100644
--- a/include/core/SkPathMeasure.h
+++ b/include/core/SkPathMeasure.h
@@ -63,7 +63,7 @@ public:
/** Given a start and stop distance, return in dst the intervening segment(s).
If the segment is zero-length, return false, else return true.
- startD and stopD are pinned to legal values (0..getLength()). If startD <= stopD
+ startD and stopD are pinned to legal values (0..getLength()). If startD > stopD
then return false (and leave dst untouched).
Begin the segment with a moveTo if startWithMoveTo is true
*/