diff options
author | Alp Toker <alp@nuanti.com> | 2013-12-20 00:33:39 +0000 |
---|---|---|
committer | Alp Toker <alp@nuanti.com> | 2013-12-20 00:33:39 +0000 |
commit | baf8c08693d2086cd8e45b31645812b51984b926 (patch) | |
tree | df63f7a5598c5c6813bdfd76402acf867b8d9379 /bindings/python | |
parent | 54317ec64ac20c701e396ee34156b7ba158e385d (diff) | |
download | llvm-baf8c08693d2086cd8e45b31645812b51984b926.tar.gz |
Fix documentation typos
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@197757 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'bindings/python')
-rw-r--r-- | bindings/python/llvm/tests/test_disassembler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bindings/python/llvm/tests/test_disassembler.py b/bindings/python/llvm/tests/test_disassembler.py index e960dc0ba9ca..37a04e4fc7e7 100644 --- a/bindings/python/llvm/tests/test_disassembler.py +++ b/bindings/python/llvm/tests/test_disassembler.py @@ -16,9 +16,9 @@ class TestDisassembler(TestBase): self.assertEqual(count, 3) self.assertEqual(s, '\tjcxz\t-127') - def test_nonexistant_triple(self): + def test_nonexistent_triple(self): with self.assertRaisesRegexp(Exception, "Could not obtain disassembler for triple"): - Disassembler("nonexistant-triple-raises") + Disassembler("nonexistent-triple-raises") def test_get_instructions(self): sequence = '\x67\xe3\x81\x01\xc7' # jcxz -127; addl %eax, %edi |