Skip to content

Commit

Permalink
fix if
Browse files Browse the repository at this point in the history
  • Loading branch information
mattearly authored and charles-lunarg committed Oct 13, 2022
1 parent 706ffb6 commit c16de53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/getting_started.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ Creating a swapchain follows the same form outlined by `vkb::InstanceBuilder` an
```cpp
vkb::SwapchainBuilder swapchain_builder{ device };
auto swap_ret = swapchain_builder.build ();
if !(swap_ret){
if (!swap_ret){

}
vkb::swapchain swapchain = swap_ret.value();
Expand Down

0 comments on commit c16de53

Please sign in to comment.