Skip to content

Commit

Permalink
Update ex6_44.cpp
Browse files Browse the repository at this point in the history
Grammar mistake
  • Loading branch information
Shi Rao authored Feb 14, 2021
1 parent 1d15633 commit b667f5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ch06/ex6_44.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#include <string>
using std::string; using std::cout; using std::endl;

inline bool is_shorter(const string &lft, const string &rht) // defining in the header more better.
inline bool is_shorter(const string &lft, const string &rht) // defining in the header is better.
{
return lft.size() < rht.size();
}
Expand Down

0 comments on commit b667f5c

Please sign in to comment.