Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocobo1 committed Jun 21, 2017
1 parent 6f3bebf commit 0395f3f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/examples/operator__notequal.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ int main()

// output values and comparisons
std::cout << std::boolalpha;
std::cout << array_1 << " == " << array_2 << " " << (array_1 != array_2) << '\n';
std::cout << object_1 << " == " << object_2 << " " << (object_1 != object_2) << '\n';
std::cout << number_1 << " == " << number_2 << " " << (number_1 != number_2) << '\n';
std::cout << string_1 << " == " << string_2 << " " << (string_1 != string_2) << '\n';
std::cout << array_1 << " != " << array_2 << " " << (array_1 != array_2) << '\n';
std::cout << object_1 << " != " << object_2 << " " << (object_1 != object_2) << '\n';
std::cout << number_1 << " != " << number_2 << " " << (number_1 != number_2) << '\n';
std::cout << string_1 << " != " << string_2 << " " << (string_1 != string_2) << '\n';
}

0 comments on commit 0395f3f

Please sign in to comment.