Skip to content

Commit 78c85c3

Browse files
cmaglieper1234
andauthored
Update arduino/cores/fqbn.go
Co-authored-by: per1234 <accounts@perglass.com>
1 parent b9ecfa6 commit 78c85c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

arduino/cores/fqbn.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ func ParseFQBN(fqbnIn string) (*FQBN, error) {
5151
for _, pair := range strings.Split(fqbnParts[3], ",") {
5252
parts := strings.SplitN(pair, "=", 2)
5353
if len(parts) != 2 {
54-
return nil, fmt.Errorf(tr("invalid config oprion: %s"), pair)
54+
return nil, fmt.Errorf(tr("invalid config option: %s"), pair)
5555
}
5656
k := strings.TrimSpace(parts[0])
5757
v := strings.TrimSpace(parts[1])

0 commit comments

Comments
 (0)