Do not include documentation of commented-out items

Some documentation of commented-out items was being output to HTML,
which was causing that documentation to be merged with the
documentation of the next item.  Fixed by changing "##" to "#" so
that the doc comments are not included in the HTML.
This commit is contained in:
Daniel Thayer 2013-10-22 13:46:09 -05:00
parent bb14a44c2f
commit e724e5d392
2 changed files with 6 additions and 4 deletions

View file

@ -28,8 +28,8 @@ export {
## values for a sumstat. ## values for a sumstat.
global cluster_ss_request: event(uid: string, ss_name: string, cleanup: bool); global cluster_ss_request: event(uid: string, ss_name: string, cleanup: bool);
## Event sent by nodes that are collecting sumstats after receiving a # Event sent by nodes that are collecting sumstats after receiving a
## request for the sumstat from the manager. # request for the sumstat from the manager.
#global cluster_ss_response: event(uid: string, ss_name: string, data: ResultTable, done: bool, cleanup: bool); #global cluster_ss_response: event(uid: string, ss_name: string, data: ResultTable, done: bool, cleanup: bool);
## This event is sent by the manager in a cluster to initiate the ## This event is sent by the manager in a cluster to initiate the

View file

@ -32,9 +32,11 @@ export {
## mind that you will probably need to set the *method* field ## mind that you will probably need to set the *method* field
## to "POST" or "PUT". ## to "POST" or "PUT".
client_data: string &optional; client_data: string &optional;
## Arbitrary headers to pass to the server. Some headers
## will be included by libCurl. # Arbitrary headers to pass to the server. Some headers
# will be included by libCurl.
#custom_headers: table[string] of string &optional; #custom_headers: table[string] of string &optional;
## Timeout for the request. ## Timeout for the request.
max_time: interval &default=default_max_time; max_time: interval &default=default_max_time;
## Additional curl command line arguments. Be very careful ## Additional curl command line arguments. Be very careful