diff --git a/doc/design/if_else_op.md b/doc/design/if_else_op.md index 79bb543de1ceb58673c29c7e5d12556d1ddff160..cd66bfabf2b5db857c0050a31762529b137ebfd5 100644 --- a/doc/design/if_else_op.md +++ b/doc/design/if_else_op.md @@ -47,8 +47,9 @@ o1, o2 = if(cond) Some questions: 1. how to know which inputs will be selected by condition? - e.g. True_block(): + ```python + True_block(): y = pd.fc(x) # we will have x, w, b all as inputs # but only x will be selected by cond, how can the block know? - +```