Skip to content

Commit b5eea09

Browse files
Merge pull request #1108 from Geode-solutions/fix_frame_string_method
fix(Frame): fixing bug in Frame string method.
2 parents d9cba20 + 751b727 commit b5eea09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/geode/geometry/frame.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ namespace geode
170170
auto output = absl::StrCat( "(", frame_[0].string() );
171171
for( const auto f : LRange{ dimension - 1 } )
172172
{
173-
absl::StrAppend( &output, " -- ", frame_[f].string() );
173+
absl::StrAppend( &output, " -- ", frame_[f + 1].string() );
174174
}
175175
absl::StrAppend( &output, ")" );
176176
return output;

0 commit comments

Comments
 (0)