Skip to content

Commit 42a084f

Browse files
authored
Merge pull request #93 from arduino/dependabot/pip/codespell-2.3.0
Bump codespell from 2.2.6 to 2.3.0
2 parents 0ec24de + 1eba144 commit 42a084f

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func main() {
136136

137137
if *hasDownloadFile {
138138
go http.ListenAndServe(":"+*networkPort, http.FileServer(http.Dir(filepath.Dir(*sketchPath))))
139-
// find my ip if not specified
139+
// find my IP if not specified
140140
ip := getMyIP(net.ParseIP(*networkAddress))
141141
url := "http://" + ip.String() + ":" + *networkPort + "/" + filepath.Base(*sketchPath)
142142
sketchData = bytes.NewBufferString(url)
@@ -219,7 +219,7 @@ func main() {
219219
resp, err := httpClient.Post(httpheader+*networkAddress+":"+*networkPort+*resetEndpoint, "", nil)
220220
if err != nil {
221221
if *verbose {
222-
fmt.Println("Failed to reset the board, please reset maually")
222+
fmt.Println("Failed to reset the board, please reset manually")
223223
}
224224
os.Exit(0)
225225
}

poetry.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ python = "^3.9"
99

1010
[tool.poetry.dev-dependencies]
1111
yamllint = "^1.35.1"
12-
codespell = "^2.2.6"
12+
codespell = "^2.3.0"
1313

1414
[build-system]
1515
requires = ["poetry-core>=1.0.0"]

0 commit comments

Comments
 (0)