Skip to content

Commit

Permalink
Add a space after "catch" in example code in README.md
Browse files Browse the repository at this point in the history
I think missing spaces after keywords are just ugly.
  • Loading branch information
sbeyer committed Mar 3, 2020
1 parent 415152c commit 23ed111
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ int main()
{
AssertThat(12, Is().LessThan(11).And().GreaterThan(99));
}
catch(const AssertionException& ex)
catch (const AssertionException& ex)
{
std::cout << "Apparently this failed:" << std::endl;
std::cout << ex.what() << std::endl;
Expand Down

0 comments on commit 23ed111

Please sign in to comment.