From 8b91680d5c57fc35275b32aea57555d8ef7d61ba Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Fri, 15 Nov 2019 09:27:26 -0500 Subject: 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 --- src/lib/osinfo/lib_osinfo.dox | 8 -------- src/lib/osinfo/lib_osinfo.md | 8 ++++++++ 2 files changed, 8 insertions(+), 8 deletions(-) delete mode 100644 src/lib/osinfo/lib_osinfo.dox create mode 100644 src/lib/osinfo/lib_osinfo.md (limited to 'src/lib/osinfo') diff --git a/src/lib/osinfo/lib_osinfo.dox b/src/lib/osinfo/lib_osinfo.dox deleted file mode 100644 index 0678ecc21e..0000000000 --- a/src/lib/osinfo/lib_osinfo.dox +++ /dev/null @@ -1,8 +0,0 @@ -@dir /lib/osinfo -@brief lib/osinfo: For inspecting the OS version and capabilities. - -In general, we use this module when we're telling the user what operating -system they are running. We shouldn't make decisions based on the output of -these checks: instead, we should have more specific checks, either at compile -time or run time, based on the observed system behavior. - diff --git a/src/lib/osinfo/lib_osinfo.md b/src/lib/osinfo/lib_osinfo.md new file mode 100644 index 0000000000..0678ecc21e --- /dev/null +++ b/src/lib/osinfo/lib_osinfo.md @@ -0,0 +1,8 @@ +@dir /lib/osinfo +@brief lib/osinfo: For inspecting the OS version and capabilities. + +In general, we use this module when we're telling the user what operating +system they are running. We shouldn't make decisions based on the output of +these checks: instead, we should have more specific checks, either at compile +time or run time, based on the observed system behavior. + -- cgit v1.2.3-54-g00ecf