Skip to content

Commit eb96289

Browse files
committed
typos
1 parent e659722 commit eb96289

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Diff for: build_platform.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -199,10 +199,10 @@ def run_or_die(cmd, error):
199199
ColorPrint.print_info('#'*40)
200200

201201
run_or_die("arduino-cli core update-index --additional-urls "+BSP_URLS+
202-
" > /dev/null", "FAILED to update core indecies")
202+
" > /dev/null", "FAILED to update core indices")
203203
print()
204204

205-
################################ Install dependancies
205+
################################ Install dependencies
206206
our_name=None
207207
try:
208208
if IS_LEARNING_SYS:
@@ -218,13 +218,13 @@ def run_or_die(cmd, error):
218218
dep = dep.strip()
219219
print("Installing "+dep)
220220
run_or_die('arduino-cli lib install "'+dep+'" > /dev/null',
221-
"FAILED to install dependancy "+dep)
221+
"FAILED to install dependency "+dep)
222222
except OSError:
223223
print("No library dep or properties found!")
224224
pass # no library properties
225225

226226
# Delete the existing library if we somehow downloaded
227-
# due to dependancies
227+
# due to dependencies
228228
if our_name:
229229
run_or_die("arduino-cli lib uninstall \""+our_name+"\"", "Could not uninstall")
230230

Diff for: doxy_gen_and_deploy.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ if [ -d "html" ] && [ -f "html/index.html" ]; then
180180
-m "Commit: ${COMMIT_SHA1}"$'\n'"${BUILD_ID}"
181181

182182
# Force push to the remote gh-pages branch.
183-
# The ouput is redirected to /dev/null to hide any sensitive credential data
183+
# The output is redirected to /dev/null to hide any sensitive credential data
184184
# that might otherwise be exposed.
185185
echo 'Git pushing'
186186
git push --force "https://${AUTH}@github.com/${REPO_SLUG}.git" > /dev/null 2>&1

0 commit comments

Comments
 (0)