Skip to content

Commit 6593288

Browse files
authored
Merge pull request zcash#6857 from nuttycom/shu-master
Fix typos (subsumes zcash#6817)
2 parents fcc73e6 + 3747e9e commit 6593288

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

doc/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1145,7 +1145,7 @@ EXT_LINKS_IN_WINDOW = NO
11451145

11461146
FORMULA_FONTSIZE = 10
11471147

1148-
# Use the FORMULA_TRANPARENT tag to determine whether or not the images
1148+
# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
11491149
# generated for formulas are transparent PNGs. Transparent PNGs are
11501150
# not supported properly for IE 6.0, but are supported on all modern browsers.
11511151
# Note that when changing this option you need to delete any form_*.png files

qa/pull-tester/rpc-tests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ def main():
190190
formatter_class=argparse.RawTextHelpFormatter)
191191
parser.add_argument('--coverage', action='store_true', help='generate a basic coverage report for the RPC interface')
192192
parser.add_argument('--deterministic', '-d', action='store_true', help='make the output a bit closer to deterministic in order to compare runs.')
193-
parser.add_argument('--exclude', '-x', help='specify a comma-seperated-list of scripts to exclude. Do not include the .py extension in the name.')
193+
parser.add_argument('--exclude', '-x', help='specify a comma-separated-list of scripts to exclude. Do not include the .py extension in the name.')
194194
parser.add_argument('--extended', action='store_true', help='run the extended test suite in addition to the basic tests')
195195
parser.add_argument('--force', '-f', action='store_true', help='run tests even on platforms where they are disabled by default (e.g. windows).')
196196
parser.add_argument('--help', '-h', '-?', action='store_true', help='print help text and exit')

qa/rpc-tests/keypool.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ def run_test(self):
8484
nodes[0].generate(1)
8585
try:
8686
nodes[0].generate(1)
87-
raise AssertionError('Keypool should be exhausted after three addesses')
87+
raise AssertionError('Keypool should be exhausted after three addresses')
8888
except JSONRPCException as e:
8989
assert_equal(e.error['code'], -12)
9090

0 commit comments

Comments
 (0)