Skip to content

Commit

Permalink
tidy ted
Browse files Browse the repository at this point in the history
  • Loading branch information
ColtonPhillips committed Jun 29, 2013
1 parent ed6e20c commit 63d59d4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generate_theme.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ int readfile(string filename, vector<string>* source) {
}

int main() {
srand ( unsigned ( time(0) ) );
srand (unsigned (time(0)));
vector<string> verbs;
vector<string> nouns;
readfile("verbs.txt", &verbs);
Expand All @@ -80,7 +80,7 @@ int main() {
random_shuffle(nouns.begin(), nouns.end());

for (int i = 0; i < 100; ++i) {
cout <<titlecase( verbs[i] ) << " the " << titlecase(nouns[i]) << endl;
cout << titlecase(verbs[i]) << " the " << titlecase(nouns[i]) << endl;
}
return 0;
}

0 comments on commit 63d59d4

Please sign in to comment.