doc/ref: fix a go-ism in the spec

It seems like it used ':=' instead of ':' by mistake.

Change-Id: I6f1694b029b43bb417c10c44048bd3976d4bb867
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/4920
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
diff --git a/doc/ref/spec.md b/doc/ref/spec.md
index 300e5d9..7daf5e1 100644
--- a/doc/ref/spec.md
+++ b/doc/ref/spec.md
@@ -2258,7 +2258,7 @@
 
 Strings can be concatenated using the `+` operator:
 ```
-s := "hi " + name + " and good bye"
+s: "hi " + name + " and good bye"
 ```
 String addition creates a new string by concatenating the operands.