aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorJeff Garzik <jgarzik@exmulti.com>2012-08-01 10:56:47 -0700
committerJeff Garzik <jgarzik@exmulti.com>2012-08-01 10:56:47 -0700
commitf81e6f779b66e235afd6c5241306d5e70ec41276 (patch)
tree208e1d5fb7b77c41e67edb372e2590250c32faac /doc
parentffe47d6d5d6ddfc0ad145f5a891e2165c3d69009 (diff)
parentb49f1398a1a02eab06def81a9d25b972c81b8fe1 (diff)
downloadbitcoin-f81e6f779b66e235afd6c5241306d5e70ec41276.tar.xz
Merge pull request #1632 from luke-jr/spelling
Fix spelling and grammar errors
Diffstat (limited to 'doc')
-rw-r--r--doc/Doxyfile2
-rw-r--r--doc/Tor.txt4
-rw-r--r--doc/unit-tests.txt4
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/Doxyfile b/doc/Doxyfile
index 08d4f8c37f..c32d0f8959 100644
--- a/doc/Doxyfile
+++ b/doc/Doxyfile
@@ -203,7 +203,7 @@ TAB_SIZE = 8
# For example adding "sideeffect=\par Side Effects:\n" will allow you to
# put the command \sideeffect (or @sideeffect) in the documentation, which
# will result in a user-defined paragraph with heading "Side Effects:".
-# You can put \n's in the value part of an alias to insert newlines.
+# You can put \n in the value part of an alias to insert newlines.
ALIASES =
diff --git a/doc/Tor.txt b/doc/Tor.txt
index 8a00cd2f9d..e088d87105 100644
--- a/doc/Tor.txt
+++ b/doc/Tor.txt
@@ -56,8 +56,8 @@ config file):
HiddenServiceDir /var/lib/tor/bitcoin-service/
HiddenServicePort 8333 127.0.0.1:8333
-The directory can be different of course, but (both) 8333's should be equal to your
-bitcoind's P2P listen port (8333 by default).
+The directory can be different of course, but (both) port numbers should be equal to
+your bitcoind's P2P listen port (8333 by default).
-externalip=X You can tell bitcoin about its publicly reachable address using
this option, and this can be a .onion address. Given the above
diff --git a/doc/unit-tests.txt b/doc/unit-tests.txt
index f76970d51e..a12786512d 100644
--- a/doc/unit-tests.txt
+++ b/doc/unit-tests.txt
@@ -12,9 +12,9 @@ make -f makefile.unix test_bitcoin # Replace makefile.unix if you're not on uni
If all tests succeed the last line of output will be:
*** No errors detected
-To add more tests, add BOOST_AUTO_TEST_CASE's to the existing
+To add more tests, add BOOST_AUTO_TEST_CASE functions to the existing
.cpp files in the test/ directory or add new .cpp files that
-implement new BOOST_AUTO_TEST_SUITE's (the makefiles are
+implement new BOOST_AUTO_TEST_SUITE sections (the makefiles are
set up to add test/*.cpp to test_bitcoin automatically).