X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fdoc%2Fdocsys.txt;h=b855749acea7e02c158d1cf108724bcbb41e7089;hb=39cbf14f8820ed779c98445b5bc5c3ff3835cda7;hp=3bb1703fc1d30fe6c201db38b0837f1e292db2e7;hpb=a4fe009d3366b0a3e119713b0ecc7fc0070efdfa;p=libucw.git diff --git a/ucw/doc/docsys.txt b/ucw/doc/docsys.txt index 3bb1703f..b855749a 100644 --- a/ucw/doc/docsys.txt +++ b/ucw/doc/docsys.txt @@ -91,10 +91,15 @@ Definition comments You can write comments documenting specific definition. Definition comment has the asterisks doubled. The multi-line version must be directly above the definition, the single-line on the same line right -of the definition. +of the definition or on a line before. void function(int parameter); /** This is a function. **/ +or + + /** This is a function. **/ + void function(int parameter); + or /**