Fix typos
This commit is contained in:
parent
df873db543
commit
c9315f26bc
|
@ -104,7 +104,7 @@ AC_ARG_ENABLE([asan],
|
||||||
fi
|
fi
|
||||||
], [ enable_asan=no ])
|
], [ enable_asan=no ])
|
||||||
|
|
||||||
# Define these substitions here to keep all version information in one place.
|
# Define these substitutions here to keep all version information in one place.
|
||||||
# For information on how to properly maintain the library version information,
|
# For information on how to properly maintain the library version information,
|
||||||
# refer to the libtool manual, section "Updating library version information":
|
# refer to the libtool manual, section "Updating library version information":
|
||||||
# https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
# https://www.gnu.org/software/libtool/manual/html_node/Updating-version-info.html
|
||||||
|
|
2
list
2
list
|
@ -1 +1 @@
|
||||||
Subproject commit 00e7d2fed042f720089c583f06a9ea4a419ba161
|
Subproject commit 6f2b9e75eaf65bb75da83677655a59110088ebc5
|
|
@ -25,7 +25,7 @@ PERL = perl
|
||||||
# the g-ir-scanner Python script and g-ir-compiler utility program needs to be found
|
# the g-ir-scanner Python script and g-ir-compiler utility program needs to be found
|
||||||
# in $(PREFIX)\bin, together with any DLLs they will depend on, if those DLLs are not already
|
# in $(PREFIX)\bin, together with any DLLs they will depend on, if those DLLs are not already
|
||||||
# in your PATH.
|
# in your PATH.
|
||||||
# Note that the Python interpretor and the introspection modules and utility progam must
|
# Note that the Python interpretor and the introspection modules and utility program must
|
||||||
# correspond to the build type (i.e. 32-bit Release for 32-bit Release builds, and so on).
|
# correspond to the build type (i.e. 32-bit Release for 32-bit Release builds, and so on).
|
||||||
#
|
#
|
||||||
# For introspection, currently only Python 2.7.x is supported. This may change when Python 3.x
|
# For introspection, currently only Python 2.7.x is supported. This may change when Python 3.x
|
||||||
|
|
|
@ -356,7 +356,7 @@ def join_suffixes(dafsa):
|
||||||
nodemap = {frozenset((b'',)): None}
|
nodemap = {frozenset((b'',)): None}
|
||||||
|
|
||||||
def join(node):
|
def join(node):
|
||||||
"""Returns a macthing node. A new node is created if no matching node
|
"""Returns a matching node. A new node is created if no matching node
|
||||||
exists. The graph is accessed in dfs order.
|
exists. The graph is accessed in dfs order.
|
||||||
"""
|
"""
|
||||||
suffixes = frozenset(to_words(node))
|
suffixes = frozenset(to_words(node))
|
||||||
|
|
|
@ -69,7 +69,7 @@ static void test_psl(void)
|
||||||
{ "abc.www.ck", 0, 0 },
|
{ "abc.www.ck", 0, 0 },
|
||||||
{ "xxx.ck", 1, 1 },
|
{ "xxx.ck", 1, 1 },
|
||||||
{ "www.xxx.ck", 0, 0 },
|
{ "www.xxx.ck", 0, 0 },
|
||||||
{ "\345\225\206\346\240\207", 1, 1 }, /* xn--czr694b oder ?? */
|
{ "\345\225\206\346\240\207", 1, 1 }, /* xn--czr694b or ?? */
|
||||||
{ "www.\345\225\206\346\240\207", 0, 0 },
|
{ "www.\345\225\206\346\240\207", 0, 0 },
|
||||||
{ "xn--czr694b", 1, 1 },
|
{ "xn--czr694b", 1, 1 },
|
||||||
{ "www.xn--czr694b", 0, 0 },
|
{ "www.xn--czr694b", 0, 0 },
|
||||||
|
|
Loading…
Reference in New Issue