Commit f6768226 authored by Adam Procter's avatar Adam Procter Committed by Scott Cyphers

Fix incorrect comment in partial_shape.hpp (#2819)

parent 6bf1b82f
......@@ -46,7 +46,7 @@ namespace ngraph
/// \code{.cpp}
/// PartialShape s{2,3,4}; // rank=3, all dimensions static
/// PartialShape s{}; // rank=0
/// PartialShape s{2,Dimension::dynamic(),3}; // rank=2, dimension 1 dynamic
/// PartialShape s{2,Dimension::dynamic(),3}; // rank=3, dimension 1 dynamic
/// \endcode
PartialShape(std::initializer_list<Dimension> init)
: PartialShape(true, init)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment