Skip to content

Commit

Permalink
fix: typos
Browse files Browse the repository at this point in the history
  • Loading branch information
felipeek committed Jan 20, 2023
1 parent 20f20ed commit 1854f1d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/examples/mirror_cube.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ void ex_mirror_cube_window_resize_process(s32 width, s32 height) {
}

void ex_mirror_cube_menu_update() {
ImGui::Text("Single Cube");
ImGui::Text("Mirror Cube");
ImGui::Separator();

ImGui::TextWrapped("Press SPACE to throw objects!");
Expand Down
2 changes: 1 addition & 1 deletion src/examples/single_cube.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ void ex_single_cube_menu_update() {
ImGui::Text("Single Cube");
ImGui::Separator();

ImGui::TextWrapped("Tweak the friction coefficients to see how the cube slide in the ramp.");
ImGui::TextWrapped("Tweak the friction coefficients to see how the cube slide on the ramp.");
ImGui::TextWrapped("Cube and ramp static friction coefficient:");
if (ImGui::SliderFloat("fs", &static_friction_coefficient, 0.0f, 1.0f, "%.3f")) {
cube_entity->static_friction_coefficient = (r64)static_friction_coefficient;
Expand Down
2 changes: 1 addition & 1 deletion src/examples/spot_storm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ void ex_spot_storm_window_resize_process(s32 width, s32 height) {
}

void ex_spot_storm_menu_update() {
ImGui::Text("Cube Storm");
ImGui::Text("Spot Storm");
ImGui::Separator();

ImGui::TextWrapped("Press SPACE to throw objects!");
Expand Down

0 comments on commit 1854f1d

Please sign in to comment.