From: kgv Date: Tue, 4 Mar 2014 15:40:03 +0000 (+0400) Subject: 0024685: Coding Rules - "Draw:Atoi" misprints in the document X-Git-Tag: V6_7_1_beta~45 X-Git-Url: http://git.dev.opencascade.org/gitweb/?a=commitdiff_plain;h=4ca09d0f2c1fb7a10ce25a193e32237f702dcd79;p=occt-copy.git 0024685: Coding Rules - "Draw:Atoi" misprints in the document --- diff --git a/dox/dev_guides/contribution/coding_rules.md b/dox/dev_guides/contribution/coding_rules.md index 97d27b6ab5..5ade76fb47 100644 --- a/dox/dev_guides/contribution/coding_rules.md +++ b/dox/dev_guides/contribution/coding_rules.md @@ -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};