Commit 0d91cb70 authored by Davis King's avatar Davis King

Fixed some spelling errors

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402263
parent 1d2c7a1c
...@@ -1447,7 +1447,7 @@ namespace dlib ...@@ -1447,7 +1447,7 @@ namespace dlib
{ {
DLIB_ASSERT(NC == 0 || NC == length, DLIB_ASSERT(NC == 0 || NC == length,
"\tmatrix::matrix(length)" "\tmatrix::matrix(length)"
<< "\n\tSince this is a staticly sized matrix length must equal NC" << "\n\tSince this is a statically sized matrix length must equal NC"
<< "\n\tlength: " << length << "\n\tlength: " << length
<< "\n\tNR: " << NR << "\n\tNR: " << NR
<< "\n\tNC: " << NC << "\n\tNC: " << NC
...@@ -1460,7 +1460,7 @@ namespace dlib ...@@ -1460,7 +1460,7 @@ namespace dlib
{ {
DLIB_ASSERT(NR == 0 || NR == length, DLIB_ASSERT(NR == 0 || NR == length,
"\tvoid matrix::set_size(length)" "\tvoid matrix::set_size(length)"
<< "\n\tSince this is a staticly sized matrix length must equal NR" << "\n\tSince this is a statically sized matrix length must equal NR"
<< "\n\tlength: " << length << "\n\tlength: " << length
<< "\n\tNR: " << NR << "\n\tNR: " << NR
<< "\n\tNC: " << NC << "\n\tNC: " << NC
...@@ -1643,7 +1643,7 @@ namespace dlib ...@@ -1643,7 +1643,7 @@ namespace dlib
COMPILE_TIME_ASSERT(NR == 1 || NR == 0); COMPILE_TIME_ASSERT(NR == 1 || NR == 0);
DLIB_ASSERT( nr() == 1 && nc() == 1 , DLIB_ASSERT( nr() == 1 && nc() == 1 ,
"\tmatrix::operator const type" "\tmatrix::operator const type"
<< "\n\tYou can only attempt to implicity convert a matrix to a scalar if" << "\n\tYou can only attempt to implicit convert a matrix to a scalar if"
<< "\n\tthe matrix is a 1x1 matrix" << "\n\tthe matrix is a 1x1 matrix"
<< "\n\tnr(): " << nr() << "\n\tnr(): " << nr()
<< "\n\tnc(): " << nc() << "\n\tnc(): " << nc()
...@@ -1691,7 +1691,7 @@ namespace dlib ...@@ -1691,7 +1691,7 @@ namespace dlib
{ {
DLIB_ASSERT(NC == 0 || NC == length, DLIB_ASSERT(NC == 0 || NC == length,
"\tvoid matrix::set_size(length)" "\tvoid matrix::set_size(length)"
<< "\n\tSince this is a staticly sized matrix length must equal NC" << "\n\tSince this is a statically sized matrix length must equal NC"
<< "\n\tlength: " << length << "\n\tlength: " << length
<< "\n\tNR: " << NR << "\n\tNR: " << NR
<< "\n\tNC: " << NC << "\n\tNC: " << NC
...@@ -1705,7 +1705,7 @@ namespace dlib ...@@ -1705,7 +1705,7 @@ namespace dlib
{ {
DLIB_ASSERT(NR == 0 || NR == length, DLIB_ASSERT(NR == 0 || NR == length,
"\tvoid matrix::set_size(length)" "\tvoid matrix::set_size(length)"
<< "\n\tSince this is a staticly sized matrix length must equal NR" << "\n\tSince this is a statically sized matrix length must equal NR"
<< "\n\tlength: " << length << "\n\tlength: " << length
<< "\n\tNR: " << NR << "\n\tNR: " << NR
<< "\n\tNC: " << NC << "\n\tNC: " << NC
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment