Commit 4250009c authored by James Knee's avatar James Knee
Browse files

removed comma

parent 369c91c9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -28,7 +28,7 @@ using namespace std;
 * When overloading the instream operators, the input should be formatted such that it includes all fields of the object.
 * @example
 * labFour_pZero_Person James;
 * std::stringstream input("James, 2010-02-28");
 * std::stringstream input("James 2010-02-28");
 * input >> James; // inputs "James, 2010-02-28"
 *
 * @example