Skip to content

Commit 739e8b0

Browse files
committed
fixed typos
1 parent 8e335f6 commit 739e8b0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

scripts/update_ios_android_dependencies.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,20 @@
1515
# limitations under the License.
1616

1717
"""
18-
This script fetches the latest cocoapod and android package versions from their
18+
This script fetches the latest Cocoapod and Android package versions from their
1919
respective public repositories and updates these versions in various files
2020
across the C++ repository.
2121
2222
There are 3 types of files being updated by this script,
23-
- Podfile : Files containins lists of cocoapods along with their versions.
23+
- Podfile : Files containing lists of cocoapods along with their versions.
2424
Eg: `ios_pods/Podfile` and any integration tests podfiles.
2525
26-
- Android dependencies gradle file: Gradle files containing list of android
26+
- Android dependencies gradle file: Gradle files containing list of Android
2727
libraries and their versions that is
2828
referenced by gradle files from sub projects
2929
Eg: `Android/firebase_dependencies.gradle`
3030
31-
- Readme file: Readme file containing all dependencies (ios and android) and
31+
- Readme file: Readme file containing all dependencies (iOS and Android) and
3232
and their versions. Eg: 'release_build_files/readme.md`
3333
3434
Usage:
@@ -39,7 +39,7 @@
3939
# Update versions in default set of files in the repository
4040
python3 scripts/update_ios_android_dependencies.py
4141
42-
# Update only android packages
42+
# Update only Android packages
4343
python3 scripts/update_ios_android_dependencies.py --skip_ios
4444
4545
# Update specific pod files (or directories containing pod files)
@@ -364,7 +364,7 @@ def replace_pod_line(m):
364364

365365
########## Android versions update #############################
366366

367-
# Android gMaven repostiory from where we scan available android packages
367+
# Android gMaven repostiory from where we scan available Android packages
368368
# and their versions
369369
GMAVEN_MASTER_INDEX = "https://dl.google.com/dl/android/maven2/master-index.xml"
370370
GMAVEN_GROUP_INDEX = "https://dl.google.com/dl/android/maven2/{0}/group-index.xml"
@@ -622,9 +622,9 @@ def parse_cmdline_args():
622622

623623
def main():
624624
args = parse_cmdline_args()
625-
# Readme files have to be updated for both android and iOS dependencies.
625+
# Readme files have to be updated for both Android and iOS dependencies.
626626
readme_files = get_files(args.readmefiles, file_extension='.md',
627-
file_name='readme')
627+
file_name='readme')
628628

629629
if not args.skip_ios:
630630
latest_pod_versions_map = get_latest_pod_versions(args.specs_repo, PODS)

0 commit comments

Comments
 (0)