cue: implement "front-style" list comprehensions

This now also allows any of the non-JSON keywords
to be used as references. Previously, these were already
supported as field names.

Issue #339
Issue #165

Change-Id: I721d054c8220ba3536f680fe2e3e502a62f99b6b
Reviewed-on: https://cue-review.googlesource.com/c/cue/+/5683
Reviewed-by: Marcel van Lohuizen <mpvl@golang.org>
diff --git a/encoding/jsonschema/decode.go b/encoding/jsonschema/decode.go
index 72bd2cb..db9007d 100644
--- a/encoding/jsonschema/decode.go
+++ b/encoding/jsonschema/decode.go
@@ -419,7 +419,7 @@
 
 	default:
 		if !n.IsConcrete() {
-			s.errf(n, "invalid non-concerte value")
+			s.errf(n, "invalid non-concrete value")
 		}
 		return n.Syntax(cue.Final()).(ast.Expr)
 	}