Commit 1c034cf5 authored by Adam Procter's avatar Adam Procter

Typo fix (it's always in the stuff you copy and paste...)

parent d693075f
...@@ -34,17 +34,17 @@ CoordinateIterator::CoordinateIterator(const Shape& space_shape, ...@@ -34,17 +34,17 @@ CoordinateIterator::CoordinateIterator(const Shape& space_shape,
{ {
if (space_shape.size() != window_inner_corner.size()) if (space_shape.size() != window_inner_corner.size())
{ {
throw ngraph_error("Coordinate iterator inner corner rank does not make space shape rank"); throw ngraph_error("Coordinate iterator inner corner rank does not match space shape rank");
} }
if (space_shape.size() != window_outer_corner.size()) if (space_shape.size() != window_outer_corner.size())
{ {
throw ngraph_error("Coordinate iterator outer corner rank does not make space shape rank"); throw ngraph_error("Coordinate iterator outer corner rank does not match space shape rank");
} }
if (space_shape.size() != strides.size()) if (space_shape.size() != strides.size())
{ {
throw ngraph_error("Coordinate iterator stride rank does not make space shape rank"); throw ngraph_error("Coordinate iterator stride rank does not match space shape rank");
} }
for (size_t i = 0; i < space_shape.size(); i++) for (size_t i = 0; i < space_shape.size(); i++)
......
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