We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 973aad1 commit 8f35153Copy full SHA for 8f35153
internal/wasmserveutil/util.go
@@ -15,7 +15,7 @@ var reGoVersion = regexp.MustCompile(`^go(\d+)\.(\d+)(\.(\d+))?`)
15
func WasmExecJSURL(goVersion string) (string, error) {
16
m := reGoVersion.FindStringSubmatch(goVersion)
17
if len(m) == 0 {
18
- return "", fmt.Errorf("wasmserve: invalid Go version: %s", goVersion)
+ return "", fmt.Errorf("wasmserveutil: invalid Go version: %s", goVersion)
19
}
20
minor, _ := strconv.Atoi(m[2])
21
0 commit comments