Skip to content

Commit a69a11a

Browse files
authored
[skip changelog] fixed typos (#773)
* [skip changelog] fix typo * Updated go-properties-orderedmap and fixed typo arduino/go-properties-orderedmap@7e1498e#commitcomment-40162715
1 parent a6e4fdf commit a69a11a

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

Diff for: commands/upload/upload.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ func runTool(recipeID string, props *properties.Map, outStream, errStream io.Wri
355355
if strings.TrimSpace(recipe) == "" {
356356
return nil // Nothing to run
357357
}
358-
if props.IsProertyMissingInExpandPropsInString("serial.port", recipe) {
358+
if props.IsPropertyMissingInExpandPropsInString("serial.port", recipe) {
359359
return fmt.Errorf("no upload port provided")
360360
}
361361
cmdLine := props.ExpandPropsInString(recipe)

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/GeertJohan/go.rice v1.0.0
88
github.com/arduino/board-discovery v0.0.0-20180823133458-1ba29327fb0c
99
github.com/arduino/go-paths-helper v1.2.0
10-
github.com/arduino/go-properties-orderedmap v1.2.0
10+
github.com/arduino/go-properties-orderedmap v1.3.0
1111
github.com/arduino/go-timeutils v0.0.0-20171220113728-d1dd9e313b1b
1212
github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b
1313
github.com/cmaglie/pb v1.0.27

Diff for: go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ github.com/arduino/go-paths-helper v1.0.1 h1:utYXLM2RfFlc9qp/MJTIYp3t6ux/xM6mWje
1818
github.com/arduino/go-paths-helper v1.0.1/go.mod h1:HpxtKph+g238EJHq4geEPv9p+gl3v5YYu35Yb+w31Ck=
1919
github.com/arduino/go-paths-helper v1.2.0 h1:qDW93PR5IZUN/jzO4rCtexiwF8P4OIcOmcSgAYLZfY4=
2020
github.com/arduino/go-paths-helper v1.2.0/go.mod h1:HpxtKph+g238EJHq4geEPv9p+gl3v5YYu35Yb+w31Ck=
21-
github.com/arduino/go-properties-orderedmap v1.2.0 h1:H7sub5hjAtFLZYd/NVWBOr6Jw7U1CnamYvNSM3dDdyE=
22-
github.com/arduino/go-properties-orderedmap v1.2.0/go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk=
21+
github.com/arduino/go-properties-orderedmap v1.3.0 h1:4No/vQopB36e7WUIk6H6TxiSEJPiMrVOCZylYmua39o=
22+
github.com/arduino/go-properties-orderedmap v1.3.0/go.mod h1:DKjD2VXY/NZmlingh4lSFMEYCVubfeArCsGPGDwb2yk=
2323
github.com/arduino/go-timeutils v0.0.0-20171220113728-d1dd9e313b1b h1:9hDi4F2st6dbLC3y4i02zFT5quS4X6iioWifGlVwfy4=
2424
github.com/arduino/go-timeutils v0.0.0-20171220113728-d1dd9e313b1b/go.mod h1:uwGy5PpN4lqW97FiLnbcx+xx8jly5YuPMJWfVwwjJiQ=
2525
github.com/arduino/go-win32-utils v0.0.0-20180330194947-ed041402e83b h1:3PjgYG5gVPA7cipp7vIR2lF96KkEJIFBJ+ANnuv6J20=

Diff for: legacy/builder/phases/libraries_builder.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ func compileLibrary(ctx *types.Context, library *libraries.Library, buildPath *p
140140

141141
if !coreSupportPrecompiled {
142142
logger := ctx.GetLogger()
143-
logger.Fprintln(os.Stdout, constants.LOG_LEVEL_INFO, "The plaform does not support 'compiler.libraries.ldflags' for precompiled libraries.")
143+
logger.Fprintln(os.Stdout, constants.LOG_LEVEL_INFO, "The platform does not support 'compiler.libraries.ldflags' for precompiled libraries.")
144144

145145
} else if precompiledPath != nil {
146146
// Find all libraries in precompiledPath

0 commit comments

Comments
 (0)