Skip to content

Commit

Permalink
github: Fix print statement
Browse files Browse the repository at this point in the history
  • Loading branch information
jostephd committed Oct 12, 2019
1 parent aff4812 commit d84415d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/CONTRIBUTING.md
Expand Up @@ -92,7 +92,7 @@ public:
}
}

/* Keep class method brackets on their own line, and always utilize const for methods and
/** Keep class method brackets on their own line, and always utilize const for methods and
* variables when possible.
*
* For documenting functions, we loosely follow Doxygen conventions. You don't need to document
Expand All @@ -103,7 +103,7 @@ public:
*/
void exclaim(const std::string& speaker) const
{
std::cerr << speaker ": They're taking the Hobbits to Isengard!" << std::endl;
std::cerr << speaker << ": They're taking the Hobbits to Isengard!" << std::endl;
}

private:
Expand Down

0 comments on commit d84415d

Please sign in to comment.