Skip to content

Commit 751b727

Browse files
committed
fix(Frame): fixing bug in Frame string method.
1 parent d9cba20 commit 751b727

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)