]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Not const.
authorNick Mathewson <nickm@torproject.org>
Sun, 10 Nov 2019 21:14:38 +0000 (16:14 -0500)
committerNick Mathewson <nickm@torproject.org>
Sun, 10 Nov 2019 21:14:38 +0000 (16:14 -0500)
src/lib/subsys/initialization.dox

index 3b500f9620fc9ef676399f389958487e57b77dab..ed2d5abf27448e481d604958fd8e7e78673c92b4 100644 (file)
@@ -55,7 +55,7 @@ In simplest terms, a **subsytem** is a logically separate part of Tor that
 can be initialized, shut down, managed, and configured somewhat independently
 of the rest of the program.
 
-To define a subsystem, we declare a `static const` instance of subsys_fns_t,
+To define a subsystem, we declare a `const` instance of subsys_fns_t,
 describing the subsystem and a set of functions that initialize it,
 deconstruct it, and so on.  See the documentation for subsys_fns_t for a full
 list of these functions.
@@ -73,4 +73,5 @@ must occur _after_ the initialization process, during configuration.
 
 
 
+
 **/