summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-02-24 08:10:20 -0500
committerNick Mathewson <nickm@torproject.org>2020-02-24 08:10:20 -0500
commitc9bd3579f7e77076eb3543cc5875ed8f9a0d689a (patch)
treeb1c32f86fee885ffeb1e57ce1be6acd6dd497bc1 /doc
parentb6d9484fa7ab3770d988d2ad488667c3455caf80 (diff)
downloadtor-c9bd3579f7e77076eb3543cc5875ed8f9a0d689a.tar.gz
tor-c9bd3579f7e77076eb3543cc5875ed8f9a0d689a.zip
Tweak a couple of URLs in gettingstarted.md
Diffstat (limited to 'doc')
-rw-r--r--doc/HACKING/GettingStarted.md11
1 files changed, 6 insertions, 5 deletions
diff --git a/doc/HACKING/GettingStarted.md b/doc/HACKING/GettingStarted.md
index 0c42404634..7d5397d70c 100644
--- a/doc/HACKING/GettingStarted.md
+++ b/doc/HACKING/GettingStarted.md
@@ -11,8 +11,9 @@ whole Tor ecosystem.)
If you are looking for a more bare-bones, less user-friendly information
-dump of important information, you might like reading the "torguts"
-documents linked to below. You should probably read it before you write
+dump of important information, you might like reading the
+doxygen output at https://src-ref.docs.torproject.org/tor/index.html .
+You should probably skim some of the topic headings there before you write
your first patch.
@@ -49,14 +50,14 @@ Once you've reached this point, here's what you need to know.
going to fix a bug that appears in a stable version, check out the
appropriate "maint" branch, as in:
- git checkout maint-0.2.7
+ git checkout maint-0.4.3
2. Find your way around the source
- Our overall code structure is explained in the "torguts" documents,
+ Our overall code structure is explained in our source documentation,
currently at
- git clone https://git.torproject.org/user/nickm/torguts.git
+ https://src-ref.docs.torproject.org/tor/index.html
Find a part of the code that looks interesting to you, and start
looking around it to see how it fits together!