Skip to content

Commit

Permalink
[clang-tidy] Fix example in documentation, NFC
Browse files Browse the repository at this point in the history
Summary: A fix in documentation.

Reviewers: bkramer

Reviewed By: bkramer

Subscribers: JDevlieghere, xazax.hun

Differential Revision: https://reviews.llvm.org/D38087

llvm-svn: 313962
krasimirgg committed Sep 22, 2017
1 parent d2e0d1f commit ee0dafe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -15,7 +15,7 @@ Below are two examples of what kind of occurrences will be found and two example
std::random_shuffle(vec.begin(), vec.end());

// Second example
std::random_shuffle(vec.begin(), vec.end(), randomFun);
std::random_shuffle(vec.begin(), vec.end(), randomFunc);

Both of these examples will be replaced with:

0 comments on commit ee0dafe

Please sign in to comment.