aboutsummaryrefslogtreecommitdiff
path: root/cmp/cmpopts/xform.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmp/cmpopts/xform.go')
-rw-r--r--cmp/cmpopts/xform.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmp/cmpopts/xform.go b/cmp/cmpopts/xform.go
index 4eb49d6..8812443 100644
--- a/cmp/cmpopts/xform.go
+++ b/cmp/cmpopts/xform.go
@@ -23,6 +23,7 @@ func (xf xformFilter) filter(p cmp.Path) bool {
// that the transformer cannot be recursively applied upon its own output.
//
// An example use case is a transformer that splits a string by lines:
+//
// AcyclicTransformer("SplitLines", func(s string) []string{
// return strings.Split(s, "\n")
// })