diff --git a/clang-tools-extra/clang-doc/assets/function-template.mustache b/clang-tools-extra/clang-doc/assets/function-template.mustache index 6683afa03ea43..2510a4de2cd68 100644 --- a/clang-tools-extra/clang-doc/assets/function-template.mustache +++ b/clang-tools-extra/clang-doc/assets/function-template.mustache @@ -14,10 +14,10 @@ {{! Function Comments }} - {{#FunctionComments}} + {{#Description}}
HTML-SHAPE: double area ()
HTML-SHAPE:
HTML-SHAPE:
+HTML-SHAPE: Calculates the area of the shape.
+HTML-SHAPE:
HTML-SHAPE: double perimeter ()
HTML-SHAPE:
HTML-SHAPE:
+HTML-SHAPE: Calculates the perimeter of the shape.
+HTML-SHAPE:
HTML-SHAPE: void ~Shape ()
HTML-SHAPE:
HTML-SHAPE:
+HTML-SHAPE: Virtual destructor.
+HTML-SHAPE:
HTML-CALC: int add (int a, int b)
HTML-CALC:
HTML-CALC:
+HTML-CALC: Adds two integers.
+HTML-CALC:
HTML-CALC: int subtract (int a, int b)
HTML-CALC:
HTML-CALC:
+HTML-CALC: Subtracts the second integer from the first.
+HTML-CALC:
HTML-CALC: int multiply (int a, int b)
HTML-CALC:
HTML-CALC:
+HTML-CALC: Multiplies two integers.
+HTML-CALC:
HTML-CALC: double divide (int a, int b)
HTML-CALC:
HTML-CALC:
+HTML-CALC: Divides the first integer by the second.
+HTML-CALC:
HTML-CALC: int mod (int a, int b)
HTML-CALC:
HTML-CALC:
+HTML-CALC: Performs the mod operation on integers.
+HTML-CALC:
HTML-RECTANGLE: void Rectangle (double width, double height)
HTML-RECTANGLE:
HTML-RECTANGLE:
+HTML-RECTANGLE: Constructs a new Rectangle object.
+HTML-RECTANGLE:
HTML-RECTANGLE: double area ()
HTML-RECTANGLE:
HTML-RECTANGLE:
+HTML-RECTANGLE: Calculates the area of the rectangle.
+HTML-RECTANGLE:
HTML-RECTANGLE: double perimeter ()
HTML-RECTANGLE:
HTML-RECTANGLE:
+HTML-RECTANGLE: Calculates the perimeter of the rectangle.
+HTML-RECTANGLE:
HTML-CIRCLE: void Circle (double radius)
HTML-CIRCLE:
HTML-CIRCLE:
+HTML-CIRCLE: Constructs a new Circle object.
+HTML-CIRCLE:
HTML-CIRCLE: double area ()
HTML-CIRCLE:
HTML-CIRCLE:
+HTML-CIRCLE: Calculates the area of the circle.
+HTML-CIRCLE:
HTML-CIRCLE: double perimeter ()
HTML-CIRCLE:
HTML-CIRCLE:
+HTML-CIRCLE: Calculates the perimeter of the circle.
+HTML-CIRCLE: