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 | 171b0c36a3e8debc5c24a9f7dab8427b8ef1cd2e (patch) | |
tree | d6f06684522134755f17b3c566f6c6becc9e169d /llvm/bindings/python | |
parent | 514102d24f36a8afca9c8fceff56660cd4bd42e8 (diff) | |
download | bcm5719-llvm-171b0c36a3e8debc5c24a9f7dab8427b8ef1cd2e.tar.gz bcm5719-llvm-171b0c36a3e8debc5c24a9f7dab8427b8ef1cd2e.zip |
Fix documentation typos
llvm-svn: 197757
Diffstat (limited to 'llvm/bindings/python')
-rw-r--r-- | llvm/bindings/python/llvm/tests/test_disassembler.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/bindings/python/llvm/tests/test_disassembler.py b/llvm/bindings/python/llvm/tests/test_disassembler.py index e960dc0ba9c..37a04e4fc7e 100644 --- a/llvm/bindings/python/llvm/tests/test_disassembler.py +++ b/llvm/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 |