diff --git a/src/inputs/checklist.js b/src/inputs/checklist.js
index ffdc7c9..1a5b149 100644
--- a/src/inputs/checklist.js
+++ b/src/inputs/checklist.js
@@ -143,7 +143,7 @@ $(function(){
limit: 4,
/**
Text shown when count of checked items is greater than limit parameter.
- You can use {checked} and count placeholders.
+ You can use {checked} and {count} placeholders.
@property limitText
@type string
diff --git a/src/inputs/list.js b/src/inputs/list.js
index fc8412c..ad53e68 100644
--- a/src/inputs/list.js
+++ b/src/inputs/list.js
@@ -222,7 +222,7 @@ List - abstract class for inputs that have source option loaded from js array or
List.defaults = $.extend({}, $.fn.editableform.types.abstract.defaults, {
/**
- Source data for dropdown list. If string - considered ajax url to load items. Otherwise should be an array.
+ Source data for list. If string - considered ajax url to load items. Otherwise should be an array.
Array format is: [{value: 1, text: "text"}, {...}]
For compability it also supports format {value1: "text1", value2: "text2" ...} but it does not guarantee elements order.