Fixed cv namespace boldface (from ticket #991)
authorIlya Lysenkov <no@email>
Wed, 8 Jun 2011 16:00:40 +0000 (16:00 +0000)
committerIlya Lysenkov <no@email>
Wed, 8 Jun 2011 16:00:40 +0000 (16:00 +0000)
modules/core/doc/intro.rst

index 95f8e36..90f20d6 100644 (file)
@@ -23,10 +23,10 @@ The further chapters of the document describe functionality of each module. But
 API Concepts
 ================
 
-*``cv``* Namespace
+``cv`` Namespace
 ------------------
 
-All the OpenCV classes and functions are placed into the *``cv``* namespace. Therefore, to access this functionality from your code, use the ``cv::`` specifier or ``using namespace cv;`` directive:
+All the OpenCV classes and functions are placed into the ``cv`` namespace. Therefore, to access this functionality from your code, use the ``cv::`` specifier or ``using namespace cv;`` directive:
 
 .. code-block:: c