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: workflows:
 local_workflow1:  local_workflow1:
   type: direct    type: direct
   
   tasks:    tasks:
     task1:      task1:
       action: local_action str1='Hi' str2=' Mistral!'        action: local_action str1='Hi' str2=' Mistral!'
       on-complete:        on-complete:
         - task2          - task2
   task2:    task2:
     action: global_action       action: global_action
     ...       ...
   
  local_workflow2:   local_workflow2:
    type: reverse     type: reverse
    tasks:     tasks:
      task1:       task1:
        workflow: local_workflow1         workflow: local_workflow1
      
      task2:       task2:
        workflow: global_workflow param1='val1' param2='val2'         workflow: global_workflow param1='val1' param2='val2'
        requires: [task1]         requires: [task1]