From de35d1e9e428f457f8a6cfe887f34af39b05aaff Mon Sep 17 00:00:00 2001 From: Alexander Kryklia Date: Wed, 16 Jan 2013 16:46:15 +0200 Subject: [PATCH] update docs --- docs/source/drag_and_drop_input.rst | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/source/drag_and_drop_input.rst b/docs/source/drag_and_drop_input.rst index 1e5e6bf468..f98f4c99d6 100644 --- a/docs/source/drag_and_drop_input.rst +++ b/docs/source/drag_and_drop_input.rst @@ -110,7 +110,8 @@ draggables, targets and rule. For example:: Draggables is list of draggables id. Target is list of targets id, draggables must be dragged to with considering rule. Rule is string. -Draggables in dicts inside correct_answer list must not intersect. +Draggables in dicts inside correct_answer list must not intersect!!! + Wrong (for draggable id 7):: correct_answer = [ @@ -209,6 +210,8 @@ you sould use 'anyof+number' of 'unordered_equal+number' rule:: In case if we have no multiple draggables per targets (one_per_target="true"), for same number of draggables, anyof is equal to unordered_equal +If we have can_reuse=true, than one must use only long form of correct answer. + Example =======