Skip to content

Commit 32a15ed

Browse files
authored
Doc: fix missing parenthesis. (#10726)
1 parent dd6742f commit 32a15ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/fluid/design/concepts/functions_operators_layers.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ template <typename T>
4040
class FCOp : public OperatorBase {
4141
public:
4242
void Run(...) {
43-
add(mul(Input<T>("X"), Input<T>("W")), Input<T>("b");
43+
add(mul(Input<T>("X"), Input<T>("W")), Input<T>("b"));
4444
}
4545
};
4646
REGISTER_OP(FCOp, "fc");

0 commit comments

Comments
 (0)