diff --git a/misc/tutorial/6_editable.ngdoc b/misc/tutorial/6_editable.ngdoc
index 9395770e57..6e669a31bc 100644
--- a/misc/tutorial/6_editable.ngdoc
+++ b/misc/tutorial/6_editable.ngdoc
@@ -4,12 +4,16 @@
You can use the `enableCellEdit` options in your column definitions to allow a column to be editable.
-Editing is invoked via double-click, f2, or start typing any non-navigable key. Custom edit templates should be used for any editor other than the default text editor.
+Editing is invoked via double-click, f2, or start typing any non-navigable key. Custom edit templates should be used for any editor
+other than the default editors. By default a text editor is provided for all non-boolean fields, for booleans a boolean editor with
+a checkbox is provided.
ColumnDef Options:
- editableCellTemplate (default: 'ui-grid/cellTextEditor') - Valid html, templateCache Id, or url that returns html content to be compiled when edit mode is invoked.
+ editableCellTemplate (default: 'ui-grid/cellTextEditor' for non-boolean columns, 'ui-grid/cellBooleanEditor' for
+boolean columns) - Valid html, templateCache Id, or url that returns html content to be compiled when edit mode is invoked.
enableCellEdit (default: true) - false to not allow editing
cellEditableCondition (default: true) Can be set to a boolean or a function that will be called with the cellScope to determine if the cell should be invoked in edit mode.
+ type (default: null) If set to boolean the default editor provided for editing will be boolean editor.
The following option is available only if using cellNav feature
enableCellEditOnFocus - true to invoke editor as soon as cell has focus
@@ -17,7 +21,8 @@ The following option is available only if using cellNav feature