Skip to content

Commit 4ca170f

Browse files
authored
Merge pull request espressif#113 from nkaaf/fixing_some_typos
typos
2 parents 078f453 + eb96289 commit 4ca170f

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
@@ -208,10 +208,10 @@ def run_or_die(cmd, error):
208208
ColorPrint.print_info('#'*40)
209209

210210
run_or_die("arduino-cli core update-index --additional-urls "+BSP_URLS+
211-
" > /dev/null", "FAILED to update core indecies")
211+
" > /dev/null", "FAILED to update core indices")
212212
print()
213213

214-
################################ Install dependancies
214+
################################ Install dependencies
215215
our_name=None
216216
try:
217217
if IS_LEARNING_SYS:
@@ -227,13 +227,13 @@ def run_or_die(cmd, error):
227227
dep = dep.strip()
228228
print("Installing "+dep)
229229
run_or_die('arduino-cli lib install "'+dep+'" > /dev/null',
230-
"FAILED to install dependancy "+dep)
230+
"FAILED to install dependency "+dep)
231231
except OSError:
232232
print("No library dep or properties found!")
233233
pass # no library properties
234234

235235
# Delete the existing library if we somehow downloaded
236-
# due to dependancies
236+
# due to dependencies
237237
if our_name:
238238
run_or_die("arduino-cli lib uninstall \""+our_name+"\"", "Could not uninstall")
239239

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)