Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Fix typo in readme
  • Loading branch information
joboccara authored Feb 6, 2018
1 parent cd2850d commit b1ddcbf
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 @@ -81,7 +81,7 @@ void displayName(FirstName const& theFirstName, LastName const& theLastName);
// Call site
displayName(FirstName("John"), LastName("Doe"));
```
But he nested type `argument` allows to emulate a named argument syntax:
But the nested type `argument` allows to emulate a named argument syntax:
```cpp
using FirstName = NamedType<std::string, struct FirstNameTag>;
using LastName = NamedType<std::string, struct LastNameTag>;
Expand Down

0 comments on commit b1ddcbf

Please sign in to comment.