0024685: Coding Rules - "Draw:Atoi" misprints in the document
authorkgv <kgv@opencascade.com>
Tue, 4 Mar 2014 15:40:03 +0000 (19:40 +0400)
committerbugmaster <bugmaster@opencascade.com>
Thu, 6 Mar 2014 12:01:49 +0000 (16:01 +0400)
dox/dev_guides/contribution/coding_rules.md

index 97d27b6..5ade76f 100644 (file)
@@ -930,11 +930,11 @@ myCommand -flag1 value1 value2 -flag2 value3
 
 ### Arguments parser
 
-- Integer values should be read using *Draw:Atoi()* function.
-- Real values should be read using *Draw:Atof()* function.
+- Integer values should be read using *Draw::Atoi()* function.
+- Real values should be read using *Draw::Atof()* function.
 - Flags names should be checked in case insensitive manner.
 
-Functions *Draw:Atof()* and *Draw:Atoi()* support expressions and read values in C-locale.
+Functions *Draw::Atof()* and *Draw::Atoi()* support expressions and read values in C-locale.
 
 ~~~~~{.cpp}
   Standard_Real aPosition[3] = {0.0, 0.0, 0.0};