]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.30
authorfred <fred>
Wed, 12 Feb 1997 08:45:07 +0000 (08:45 +0000)
committerfred <fred>
Wed, 12 Feb 1997 08:45:07 +0000 (08:45 +0000)
Documentation/CodingStyle.pod

index 460935f859cab1a3a64e64636be460fd3293651c..2b86193338b7ad38209442f2f0df23a32f14b79c 100644 (file)
@@ -40,23 +40,23 @@ the C<type> is a Hungarian notation postfix for $C<Type>$.
 =head2 COMMENTS
 
 The source is commented in the DOC++ style.  Check out doc++ at
-F<http://www.ZIB-Berlin.DE/VisPar/doc++/doc++.html>
+http://www.zib.de/Visual/software/doc++/index.html
 
        /// short description
        class Class {
-               ///
-               Data data_member_;
+               /// short description
                /**
-                       ..
+                       long description
                */
 
+               Data data_member_;
                /****************/
 
                /// short memo
-               member();
                /**
                        long doco of member()
                */
+               member();
        };
        /**
                Class documentation.