aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorGreg Clayton <gclayton@apple.com>2011-01-08 20:28:42 +0000
committerGreg Clayton <gclayton@apple.com>2011-01-08 20:28:42 +0000
commit5d187e5495ee17f6763337a6ae28c2a7b07e4945 (patch)
tree11f1d3a5b9fda7ff39174039d2a3792882822453 /docs
parent4862fa2f3db6967464cd65a2c77b2e55de3da5ff (diff)
downloadlldb-5d187e5495ee17f6763337a6ae28c2a7b07e4945.tar.gz
Spelling changes applied from lldb_spelling.diffs from Bruce Mitchener.
Thanks Bruce! git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@123083 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/lldb-for-gdb-users.txt2
-rw-r--r--docs/testsuite/a-detailed-walkthrough.txt2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/lldb-for-gdb-users.txt b/docs/lldb-for-gdb-users.txt
index 66b629bbb..247171248 100644
--- a/docs/lldb-for-gdb-users.txt
+++ b/docs/lldb-for-gdb-users.txt
@@ -367,7 +367,7 @@ You can also choose particular variables to view:
(SKTGraphicView *) self = 0x0000000100208b40
The frame variable command is not a full expression parser but it
-does support some common operations like defererencing:
+does support some common operations like dereferencing:
(lldb) fr v *self
(SKTGraphicView *) self = 0x0000000100208b40
diff --git a/docs/testsuite/a-detailed-walkthrough.txt b/docs/testsuite/a-detailed-walkthrough.txt
index 7cf20cd04..6b5267f41 100644
--- a/docs/testsuite/a-detailed-walkthrough.txt
+++ b/docs/testsuite/a-detailed-walkthrough.txt
@@ -119,7 +119,7 @@ binary for us. The base class TestBase has defined three instance methods:
if not module.buildDwarf(self, architecture, compiler, dictionary):
raise Exception("Don't know how to build binary with dwarf")
-And the test/plugins/darwin.py provides the implmentation for all three build
+And the test/plugins/darwin.py provides the implementation for all three build
methods using the makefile mechanism. We envision that linux plugin can use a
similar approach to accomplish the task of building the binaries.