Skip to content

Commit 0e4bf73

Browse files
aurkenbat-wat
authored andcommitted
Fixed typos
CONTIBUTORS -> CONTRIBUTORS
1 parent 4fe59a1 commit 0e4bf73

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ Check out the **[contributing wiki](https://github.com/pion/webrtc/wiki/Contribu
1818
* [Atsushi Watanabe](https://github.com/at-wat) - *Sync files among repositories*
1919
* [Daniele Sluijters](https://github.com/daenney) - *Misc fixes*
2020
* [Luke S](https://github.com/encounter)
21+
* [Aurken Bilbao](https://github.com/aurkenb) - *Misc fixes*
2122

2223
### License
2324
MIT License - see [LICENSE](LICENSE) for full text

ci/.github/assert-contributors.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ then
2121
. ${SCRIPT_PATH}/.ci.conf
2222
fi
2323

24-
EXCLUDED_CONTIBUTORS+=('John R. Bradley' 'renovate[bot]' 'Renovate Bot' 'Pion Bot')
25-
MISSING_CONTIBUTORS=()
24+
EXCLUDED_CONTRIBUTORS+=('John R. Bradley' 'renovate[bot]' 'Renovate Bot' 'Pion Bot')
25+
MISSING_CONTRIBUTORS=()
2626

2727
shouldBeIncluded () {
28-
for i in "${EXCLUDED_CONTIBUTORS[@]}"
28+
for i in "${EXCLUDED_CONTRIBUTORS[@]}"
2929
do
3030
if [ "$i" == "$1" ] ; then
3131
return 1
@@ -40,15 +40,15 @@ for contributor in $(git log --format='%aN' | sort -u)
4040
do
4141
if shouldBeIncluded $contributor; then
4242
if ! grep -q "$contributor" "$SCRIPT_PATH/../README.md"; then
43-
MISSING_CONTIBUTORS+=("$contributor")
43+
MISSING_CONTRIBUTORS+=("$contributor")
4444
fi
4545
fi
4646
done
4747
unset IFS
4848

49-
if [ ${#MISSING_CONTIBUTORS[@]} -ne 0 ]; then
49+
if [ ${#MISSING_CONTRIBUTORS[@]} -ne 0 ]; then
5050
echo "Please add the following contributors to the README"
51-
for i in "${MISSING_CONTIBUTORS[@]}"
51+
for i in "${MISSING_CONTRIBUTORS[@]}"
5252
do
5353
echo "$i"
5454
done

0 commit comments

Comments
 (0)