We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ecfa6 commit 78c85c3Copy full SHA for 78c85c3
arduino/cores/fqbn.go
@@ -51,7 +51,7 @@ func ParseFQBN(fqbnIn string) (*FQBN, error) {
51
for _, pair := range strings.Split(fqbnParts[3], ",") {
52
parts := strings.SplitN(pair, "=", 2)
53
if len(parts) != 2 {
54
- return nil, fmt.Errorf(tr("invalid config oprion: %s"), pair)
+ return nil, fmt.Errorf(tr("invalid config option: %s"), pair)
55
}
56
k := strings.TrimSpace(parts[0])
57
v := strings.TrimSpace(parts[1])
0 commit comments