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 369c3ab commit 1eba144Copy full SHA for 1eba144
main.go
@@ -136,7 +136,7 @@ func main() {
136
137
if *hasDownloadFile {
138
go http.ListenAndServe(":"+*networkPort, http.FileServer(http.Dir(filepath.Dir(*sketchPath))))
139
- // find my ip if not specified
+ // find my IP if not specified
140
ip := getMyIP(net.ParseIP(*networkAddress))
141
url := "http://" + ip.String() + ":" + *networkPort + "/" + filepath.Base(*sketchPath)
142
sketchData = bytes.NewBufferString(url)
@@ -219,7 +219,7 @@ func main() {
219
resp, err := httpClient.Post(httpheader+*networkAddress+":"+*networkPort+*resetEndpoint, "", nil)
220
if err != nil {
221
if *verbose {
222
- fmt.Println("Failed to reset the board, please reset maually")
+ fmt.Println("Failed to reset the board, please reset manually")
223
}
224
os.Exit(0)
225
0 commit comments