diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-07-10 11:03:45 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-07-10 11:03:45 -0400 |
commit | fa2d53aa6a5c33ea1ede4b3346d5abcc621e619f (patch) | |
tree | 67f664ffeefd502cfa79dfc8dfbf096b2cd79055 /doc/HACKING/Module.md | |
parent | 23dc770f87c383a0e66055ae3ea2951c9a8a5c30 (diff) | |
download | tor-fa2d53aa6a5c33ea1ede4b3346d5abcc621e619f.tar.gz tor-fa2d53aa6a5c33ea1ede4b3346d5abcc621e619f.zip |
Stop mentioning src/or and src/common in doc/HACKING
Diffstat (limited to 'doc/HACKING/Module.md')
-rw-r--r-- | doc/HACKING/Module.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/HACKING/Module.md b/doc/HACKING/Module.md index 6684e258df..9cf36090b4 100644 --- a/doc/HACKING/Module.md +++ b/doc/HACKING/Module.md @@ -96,8 +96,8 @@ There are couples of "rules" you want to follow: filename as the one in the module. For example, this is a bad idea and should never be done: - - `src/or/shared_random.c` - - `src/or/dirauth/shared_random.c` + - `src/feature/dirclient/shared_random.c` + - `src/feature/dirauth/shared_random.c` * When you include headers from the module, **always** use the full module path in your statement. Example: |