Skip to content

Commit cbfb51f

Browse files
committed
[texts] Capitalise NDK to be consistent
1 parent 19972b4 commit cbfb51f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

pythonforandroid/recommendations.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,19 +22,19 @@ def check_ndk_version(ndk_dir):
2222
specified via attribute `MIN_NDK_VERSION`.
2323
2424
.. versionchanged:: 2019.06.06.1.dev0
25-
Added the ability to get android's ndk `letter version` and also
25+
Added the ability to get android's NDK `letter version` and also
2626
rewrote to raise an exception in case that an NDK version lower than
2727
the minimum supported is detected.
2828
"""
2929
version = read_ndk_version(ndk_dir)
3030

3131
if version is None:
3232
warning(
33-
'Unable to read the ndk version, assuming that you are using an'
34-
' NDK greater than {min_supported} (the minimum ndk required to'
33+
'Unable to read the NDK version, assuming that you are using an'
34+
' NDK greater than {min_supported} (the minimum NDK required to'
3535
' use p4a successfully).\n'
3636
'Note: If you got build errors, consider to download the'
37-
' recommended ndk version which is {rec_version} and try'
37+
' recommended NDK version which is {rec_version} and try'
3838
' it again (after removing all the files generated with this'
3939
' build). To download the android NDK visit the following page: '
4040
'{ndk_url}'.format(
@@ -46,7 +46,7 @@ def check_ndk_version(ndk_dir):
4646
return
4747

4848
# create a dictionary which will describe the relationship of the android's
49-
# ndk minor version with the `human readable` letter version, egs:
49+
# NDK minor version with the `human readable` letter version, egs:
5050
# Pkg.Revision = 17.1.4828580 => ndk-17b
5151
# Pkg.Revision = 17.2.4988734 => ndk-17c
5252
# Pkg.Revision = 19.0.5232133 => ndk-19 (No letter)
@@ -70,7 +70,7 @@ def check_ndk_version(ndk_dir):
7070
user_version=string_version, min_supported=MIN_NDK_VERSION
7171
),
7272
instructions=(
73-
'Please, go to the android ndk page ({ndk_url}) and download a'
73+
'Please, go to the android NDK page ({ndk_url}) and download a'
7474
' supported version.\n*** The currently recommended NDK'
7575
' version is {rec_version} ***'.format(
7676
ndk_url=NDK_DOWNLOAD_URL,

0 commit comments

Comments
 (0)