diff --git a/R/InsuranceParameters.R b/R/InsuranceParameters.R
index 73bd3106b8e7f450d8673995efaca38f59207ce2..10cf6c0b8380d5d04d35b28c07c50e12b9b556dc 100644
--- a/R/InsuranceParameters.R
+++ b/R/InsuranceParameters.R
@@ -77,7 +77,7 @@ InsuranceContract.Values = list(
     premiumComposition = NULL
 );
 
-
+# InsuranceContract.ParameterDefault #######################################
 #' Default parameters for the InsuranceContract class. A new contract will be
 #' pre-filled with these values, and values passed in the constructor (or with
 #' other setter functions) will override these values.
diff --git a/R/InsuranceTarif.R b/R/InsuranceTarif.R
index 05948fb22956ab8d9b235dc917901c9e962b7685..844319cac46c43e24e05c0a350f4b223a03e954d 100644
--- a/R/InsuranceTarif.R
+++ b/R/InsuranceTarif.R
@@ -10,6 +10,7 @@ NULL
 TariffTypeEnum = objectProperties::setSingleEnum("TariffType", levels = c("annuity", "wholelife", "endowment", "pureendowment", "terme-fix", "dread-disease", "endowment + dread-disease"))
 
 
+############ Class InsuranceTarif ###########################################
 #' Base class for Insurance Tarifs, providing calculation functions to the contract
 #'
 #' This is a base class for holding contract-independent values and
@@ -22,6 +23,8 @@ TariffTypeEnum = objectProperties::setSingleEnum("TariffType", levels = c("annui
 #' @export
 InsuranceTarif = R6Class(
   "InsuranceTarif",
+
+  ######################### PUBLIC METHODS ##################################
   public  = list(
     name  = "Insurance Contract Type",
     tarif = NULL,
diff --git a/inst/Beispiele/Example_Endowment.R b/inst/Beispiele/Example_Endowment.R
index beb17f06953e1fb020ec90bc5fbf57c8b6638972..c197325832b42f7b56d49a238dae8d1feaf64f67 100644
--- a/inst/Beispiele/Example_Endowment.R
+++ b/inst/Beispiele/Example_Endowment.R
@@ -56,7 +56,7 @@ Tarif.Bsp = InsuranceTarif$new(
 );
 
 ################################################################### #
-#              EXAMPLE CONTRACT                                  ####
+# Example contract with dynamiocs                               ####
 ################################################################### #