Fix example for workbook in doc

Add indentation in the example for workbook in doc.

Change-Id: I71df546575d239e2c0704896b7e5b67cacbb7f70
Closes-Bug: #1527475
This commit is contained in:
wangzhh 2015-12-18 14:42:51 +08:00
parent b827e4118b
commit 28b5e51e9d

View File

@ -981,24 +981,24 @@ YAML example
workflows:
 local_workflow1:
   type: direct
   
   tasks:
     task1:
       action: local_action str1='Hi' str2=' Mistral!'
       on-complete:
         - task2
   task2:
     action: global_action
     ...
   
   task2:
      action: global_action
      ...
  local_workflow2:
    type: reverse
    tasks:
      task1:
        workflow: local_workflow1
      
      task2:
        workflow: global_workflow param1='val1' param2='val2'
        requires: [task1]