diff --git a/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html b/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
index 27ca29fad..1c56c71b9 100644
--- a/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
+++ b/d6/dcd/md__c_o_n_t_r_i_b_u_t_i_n_g.html
@@ -160,7 +160,7 @@ Typical structure of a program:
#include
-
+
namespace name {
@@ -168,42 +168,44 @@ Typical structure of a program:
-class cls_name{
+class class_name {
private:
- int var1;
- char *msg;
+ int variable;
+ char *message;
public:
-
+
}
-
+
-
+
template<class T>
bool func(int param1, T param2) {
-
- if()
+
+ if () {
return false;
+ }
return true;
}
-
-
- assert(func(...) == ...);
+
+
+ assert(func(...) == ...);
-
+
}
int main(
int argc,
char *argv[]) {
+
return 0;
}