Skip to content

Commit 1ead157

Browse files
authored
Fix spelling typos in files under packages dir (#7439)
This patch fixes spelling typos found in following files README.md esp8266-arduino-doc.bash
1 parent 252cb1d commit 1ead157

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

package/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
## Release model
44

55
The release model is linear. That means that there is only one main code branch, and releases are snapshots of that branch at specific points in the sequence of commits.
6-
The advantage of this model is that the maintenance effort is greately reduced compared to other release models, such as a branched model.
6+
The advantage of this model is that the maintenance effort is greatly reduced compared to other release models, such as a branched model.
77
The disadvantage is that progress is ever only forward, and fixes can't be backported to prior releases. this means there is no such thing as a "stable" release (however, see Sub releases below).
88

99
There are 4 types of releases:
@@ -118,7 +118,7 @@ The following points assume work in a direct clone of the repository, and not in
118118
119119
6. Navigate to [Travis CI options](https://travis-ci.org/esp8266/Arduino/settings), enable ´Build pushed branches´ (before tagging in next step)
120120
121-
7. Tag the latest commit on the master branch. In this project, tags have form `X.Y.Z`, e.g. `3.0.0`, or `X.Y.Z-betaN` for release candiate versions. Notice that there's no `v`at the beginning of the tag. Tags must be annotated, not lightweight tags. To create a tag, use git command (assuming that the master branch is checked out):
121+
7. Tag the latest commit on the master branch. In this project, tags have form `X.Y.Z`, e.g. `3.0.0`, or `X.Y.Z-betaN` for release candidate versions. Notice that there's no `v`at the beginning of the tag. Tags must be annotated, not lightweight tags. To create a tag, use git command (assuming that the master branch is checked out):
122122
123123
```
124124
git tag -a -m "Release 3.0.0" 3.0.0

package/esp8266-arduino-doc.bash

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ echo "documentation template url: "$doc_template_url
4343
echo " url: "$url
4444

4545
# continue?
46-
read -e -p "Dou you wish to continue (y/n)? " -n 1 decision
46+
read -e -p "Do you wish to continue (y/n)? " -n 1 decision
4747
if echo "$decision" | grep -iq "^y" ;then
4848
echo "okay"
4949
else
@@ -59,7 +59,7 @@ rm -fR $destination_path
5959
mkdir -p $destination_path/src
6060
mkdir -p $destination_path/$version
6161

62-
# copy doc files to destination soruce dir
62+
# copy doc files to destination source dir
6363
cp -R $arduinoESP_src/doc/* $destination_path/src
6464

6565
# download doc template
@@ -68,7 +68,7 @@ rsync -av $doc_src_path/ $destination_path/build/
6868

6969
# create versions.html file
7070

71-
# ... read verions
71+
# ... read versions
7272
pushd $arduinoESP_src
7373
old_versions=$(git ls-tree -d --name-only remotes/origin/gh-pages versions/ | sed -e 's/versions\///g')
7474
popd

0 commit comments

Comments
 (0)