diff --git a/src/editable-form/editable-form.js b/src/editable-form/editable-form.js
index d93042a..57cc38e 100644
--- a/src/editable-form/editable-form.js
+++ b/src/editable-form/editable-form.js
@@ -301,7 +301,7 @@ Editableform is linked with one of input types, e.g. 'text' or 'select'.
         /* see also defaults for input */
         
         /**
-        Type of input. Can be <code>text|textarea|select|date</code>
+        Type of input. Can be <code>text|textarea|select|date|checklist</code>
 
         @property type 
         @type string
diff --git a/src/inputs/checklist.js b/src/inputs/checklist.js
index 33fa2b7..2dd4f75 100644
--- a/src/inputs/checklist.js
+++ b/src/inputs/checklist.js
@@ -1,11 +1,11 @@
 /**
-Checklist input. Internally value stored as array.
+List of checkboxes. Internally value stored as javascript array.
 
 @class checklist
 @extends list
 @final
 @example
-<a href="#" id="status" data-type="checklist" data-pk="1" data-url="/post" data-original-title="Select options"></a>
+<a href="#" id="options" data-type="checklist" data-pk="1" data-url="/post" data-original-title="Select options"></a>
 <script>
 $(function(){
     $('#options').editable({
@@ -122,7 +122,7 @@ $(function(){
 
         @property viewseparator 
         @type string
-        @default ', '
+        @default '<br>'
         **/         
         viewseparator: '<br>',
         /**
diff --git a/src/inputs/dateui/dateui.js b/src/inputs/dateui/dateui.js
index 38cc2d3..266d15c 100644
--- a/src/inputs/dateui/dateui.js
+++ b/src/inputs/dateui/dateui.js
@@ -1,7 +1,7 @@
 /**
 jQuery UI Datepicker.  
-Description and examples: http://jqueryui.com/datepicker.  
-Do not use it together with bootstrap-datepicker.
+Description and examples: http://jqueryui.com/datepicker.   
+This input is also accessible as **date** type. Do not use it together with __bootstrap-datepicker__ as both apply <code>$().datepicker()</code> method.
 
 @class dateui
 @extends abstract
diff --git a/src/inputs/list.js b/src/inputs/list.js
index 43cc74e..1eeeeb2 100644
--- a/src/inputs/list.js
+++ b/src/inputs/list.js
@@ -225,7 +225,7 @@ List - abstract class for inputs that have source option loaded from js array or
         /**
         Source data for dropdown list. If string - considered ajax url to load items. Otherwise should be an array.
         Array format is: <code>[{value: 1, text: "text"}, {...}]</code><br>
-        For compability it also supports format <code>{value1: text1, value2: text2 ...}</code> but it does not guarantee elements order.      
+        For compability it also supports format <code>{value1: "text1", value2: "text2" ...}</code> but it does not guarantee elements order.      
 
         @property source 
         @type string|array|object