aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/core/SkPath.h
diff options
context:
space:
mode:
authorGravatar caryclark <caryclark@google.com>2016-02-19 07:40:34 -0800
committerGravatar Commit bot <commit-bot@chromium.org>2016-02-19 07:40:34 -0800
commit449f7fcf7088bb67b86729bd4675a72c7580c443 (patch)
treefdcb34e1a457e1243d3bb3ca72007696d0de9706 /include/core/SkPath.h
parente507ff0460f4f878214b9454fb5b9ab8d64d8063 (diff)
fix iter to document close correctly
Diffstat (limited to 'include/core/SkPath.h')
-rw-r--r--include/core/SkPath.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkPath.h b/include/core/SkPath.h
index f4c2abf939..e1bc5e4d85 100644
--- a/include/core/SkPath.h
+++ b/include/core/SkPath.h
@@ -922,7 +922,7 @@ public:
kQuad_Verb, //!< iter.next returns 3 points
kConic_Verb, //!< iter.next returns 3 points + iter.conicWeight()
kCubic_Verb, //!< iter.next returns 4 points
- kClose_Verb, //!< iter.next returns 1 point (contour's moveTo pt)
+ kClose_Verb, //!< iter.next returns 0 points
kDone_Verb, //!< iter.next returns 0 points
};