From ec1a11f40be78e3d9137f75a1fbf04d12252ab5e Mon Sep 17 00:00:00 2001 From: linmin Date: Fri, 21 Aug 2015 17:44:46 +0800 Subject: [PATCH] format annotation --- src/symbol/symbol.cc | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/symbol/symbol.cc b/src/symbol/symbol.cc index 56ad0a869540..aecac3dda487 100644 --- a/src/symbol/symbol.cc +++ b/src/symbol/symbol.cc @@ -1,7 +1,7 @@ /*! - * Copyright (c) 2015 by Contributors - *\file symbol.cc - *\brief symbol of mxnet + * Copyright (c) 2015 by Contributors + * \file symbol.cc + * \brief symbol of mxnet */ #include #include @@ -12,13 +12,13 @@ namespace mxnet { /*! - *\brief Node is represents node of an operator in the symbolic graph. + * \brief Node is represents node of an operator in the symbolic graph. * - *It stores connection to the inputs to function represented by OperatorProperty - *NOTE on data structure: there are three types of node: - *- Normal node: contains all the necessary elements of a graph. - *- OperatorProperty: the inputs_ is empty, represents an OperatorProperty that has not been applied. - *- Variable: the sym_ is nullptr, represents an named Variable of tensors that can be composed. + * It stores connection to the inputs to function represented by OperatorProperty + * NOTE on data structure: there are three types of node: + * - Normal node: contains all the necessary elements of a graph. + * - OperatorProperty: the inputs_ is empty, represents an OperatorProperty that has not been applied. + * - Variable: the sym_ is nullptr, represents an named Variable of tensors that can be composed. */ struct Symbol::Node { /*! \brief Operator of this node */