summaryrefslogtreecommitdiffstats
path: root/googletest/xcode
diff options
context:
space:
mode:
authorGennadiy Civil <gennadiycivil@users.noreply.github.com>2017-08-03 20:49:13 (GMT)
committerGitHub <noreply@github.com>2017-08-03 20:49:13 (GMT)
commitca102b1f9d1f4c8a8c6f7a87b3e80d0af4b8789f (patch)
tree16da2d9bcca72d70d08f60dd3b2166bf72453604 /googletest/xcode
parent50f3bafb1aefcdd0704b045bcbf58b2a81720256 (diff)
parenta2451c74038fa50870186c9c17b3393ead4b5981 (diff)
downloadgoogletest-ca102b1f9d1f4c8a8c6f7a87b3e80d0af4b8789f.zip
googletest-ca102b1f9d1f4c8a8c6f7a87b3e80d0af4b8789f.tar.gz
googletest-ca102b1f9d1f4c8a8c6f7a87b3e80d0af4b8789f.tar.bz2
Merge pull request #1030 from vpfautz/master
Fixed some typos
Diffstat (limited to 'googletest/xcode')
-rwxr-xr-xgoogletest/xcode/Scripts/versiongenerate.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/googletest/xcode/Scripts/versiongenerate.py b/googletest/xcode/Scripts/versiongenerate.py
index dba08e9..16791d2 100755
--- a/googletest/xcode/Scripts/versiongenerate.py
+++ b/googletest/xcode/Scripts/versiongenerate.py
@@ -42,7 +42,7 @@
1. The AC_INIT macro will be contained within the first 1024 characters
of configure.ac
2. The version string will be 3 integers separated by periods and will be
- surrounded by squre brackets, "[" and "]" (e.g. [1.0.1]). The first
+ surrounded by square brackets, "[" and "]" (e.g. [1.0.1]). The first
segment represents the major version, the second represents the minor
version and the third represents the fix version.
3. No ")" character exists between the opening "(" and closing ")" of
@@ -68,7 +68,7 @@ config_file.close()
# Extract the version string from the AC_INIT macro
# The following init_expression means:
-# Extract three integers separated by periods and surrounded by squre
+# Extract three integers separated by periods and surrounded by square
# brackets(e.g. "[1.0.1]") between "AC_INIT(" and ")". Do not be greedy
# (*? is the non-greedy flag) since that would pull in everything between
# the first "(" and the last ")" in the file.