aboutsummaryrefslogtreecommitdiff
path: root/internal/config/print.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/config/print.go')
-rw-r--r--internal/config/print.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config/print.go b/internal/config/print.go
index a2244d0..6ae51e0 100644
--- a/internal/config/print.go
+++ b/internal/config/print.go
@@ -62,7 +62,7 @@ func PrintExclude(x *Exclude) string {
// Pos and End - with text, and returns the new file contents. Every other
// byte of src, comments and layout included, is kept exactly. Offsets that
// do not belong to src - a form parsed from text that has since changed -
-// are an error, not a panic (plan 13 review F6).
+// are an error, not a panic.
func Splice(src []byte, start, end sexp.Pos, text string) ([]byte, error) {
if start.Offset < 0 || end.Offset < start.Offset || end.Offset > len(src) {
return nil, fmt.Errorf("config: splice %d:%d is not inside %d bytes", start.Offset, end.Offset, len(src))