From 3bcd9df592be62349caa25f1ab91684d9cd4fcbf Mon Sep 17 00:00:00 2001 From: Davis King Date: Sun, 11 Dec 2011 17:29:47 -0500 Subject: [PATCH] made comment more clear --- examples/assignment_learning_ex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/assignment_learning_ex.cpp b/examples/assignment_learning_ex.cpp index c646f39fd..9705a1b96 100644 --- a/examples/assignment_learning_ex.cpp +++ b/examples/assignment_learning_ex.cpp @@ -226,8 +226,8 @@ void make_data ( std::vector rhs; label_type mapping; - // In all the assignments to follow, we will only say an element of LHS - // matches an element of RHS if the two are equal. So A matches with A, + // In all the assignments to follow, we will only say an element of the LHS + // matches an element of the RHS if the two are equal. So A matches with A, // B with B, etc. But never A with C, for example. // ------------------------