tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 8b91680d5c57fc35275b32aea57555d8ef7d61ba
parent 3a7369d0cfa567cdb02063e1dad176c92ef2c7fe
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 15 Nov 2019 09:27:26 -0500

Doxygen: rename all .dox files to end with .md

Using a standard ending here will let other tools that expect
markdown understand our output here.

This commit was automatically generated with:

   for fn in $(find src -name '*.dox'); do \
      git mv "$fn" "${fn%.dox}.md"; \
   done