diff --git a/others/guide/how to write JDito code.adoc b/others/guide/how to write JDito code.adoc
index cd9eef7065612bb2ca1fe443508189287ac2e686..246924f19110216471e418f6ae26785f5b366f4e 100644
--- a/others/guide/how to write JDito code.adoc	
+++ b/others/guide/how to write JDito code.adoc	
@@ -143,6 +143,7 @@ So just start your functions / methods name with a _ if you need private methods
 
 --> do not use functions which start with a _ outside of the class!
 
+Add @ignore to the Comment of the function.
 
 == JS-Doc ==
 
diff --git a/others/guide/instanceableLibExample.adoc b/others/guide/instanceableLibExample.adoc
index bbc7a88b00183d68c8d46aaff442c2b356a136ac..56e7760a7945b7e99403e223818663e3f2a77017 100644
--- a/others/guide/instanceableLibExample.adoc
+++ b/others/guide/instanceableLibExample.adoc
@@ -43,6 +43,7 @@ UtilClass.prototype.myFunction = function(param1, param2) {
  * @param {String} param3 is for ...
  * 
  * @return {String} a result
+ * @ignore
  */
 UtilClass.prototype._myPrivateFunction = function(param1, param2, param3) {
     if(param1 && param2 && param3) {
diff --git a/others/guide/staticLibExample.adoc b/others/guide/staticLibExample.adoc
index e98a7822630c4a32567a6fd3d5613c8290df3e77..90003eb7f69fca6763016432e1feb16d8953e47e 100644
--- a/others/guide/staticLibExample.adoc
+++ b/others/guide/staticLibExample.adoc
@@ -39,6 +39,7 @@ ExampleUtils.staticFunction1 = function(param1, param2) {
  * @param {String} param3 is for ...
  * 
  * @return {String} a result
+ * @ignore
  */
 ExampleUtils._privateStaticFunction1 = function(param1, param2, param3) {
     if(param1 && param2) {