From f8eb9b179e7031ed746d0d0309fa84459a4eee60 Mon Sep 17 00:00:00 2001 From: kgv Date: Tue, 4 Mar 2014 19:40:03 +0400 Subject: [PATCH] 0024685: Coding Rules - "Draw:Atoi" misprints in the document --- dox/dev_guides/contribution/coding_rules.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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};