Commit 9d05fb29 authored by Davis King's avatar Davis King

Fixed some grammar and typos

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402346
parent 7226d0b6
...@@ -7,14 +7,14 @@ ...@@ -7,14 +7,14 @@
Doing so will cause the build to fail because of name collisions (such as Doing so will cause the build to fail because of name collisions (such as
dlib/string.h and string.h from the standard library). Instead you should dlib/string.h and string.h from the standard library). Instead you should
add the folder that contains the dlib folder to your include search path add the folder that contains the dlib folder to your include search path
and then use include statements of the form #include <dlib/queue.h>. and then use include statements of the form #include <dlib/queue.h> or
This will ensure that everything builds correctly. #include "dlib/queue.h". This will ensure that everything builds correctly.
XCode: XCode:
The XCode IDE often puts all folders that it knows about into The XCode IDE often puts all folders that it knows about into
the compiler search path. So if you are using XCode then don't the compiler search path. So if you are using XCode then either
drag the dlib folder into the project (or modify your XCode project don't drag the whole dlib folder into the project or alternatively
settings to not auto-add all folders to the include path. modify your XCode project settings to not auto-add all folders to
Instead just make sure that the dlib folder is itself inside the include path. Instead just make sure that the dlib folder is
a folder in your include path. itself inside a folder in your include path.
*/ */
...@@ -15,9 +15,9 @@ namespace dlib ...@@ -15,9 +15,9 @@ namespace dlib
{ {
template < template <
typename kernel_type : public noncopyable typename kernel_type
> >
class kkmeans class kkmeans : public noncopyable
{ {
/*! /*!
REQUIREMENTS ON kernel_type REQUIREMENTS ON kernel_type
......
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