getNumberingPath() 반환 값의 예를 잘못 표기한 주석 제거

git-svn-id: http://xe-core.googlecode.com/svn/sandbox@4344 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
bnu 2008-07-09 15:29:32 +00:00
parent 210775b6e9
commit c31b149289

View file

@ -382,9 +382,6 @@
* @brief 주어진 숫자를 주어진 크기로 recursive하게 잘라줌
* @param no 주어진 숫자
* @param size 잘라낼 크기
*
* ex) 12, 3 => 012/
* ex) 1234, 3 => 123/004/
**/
function getNumberingPath($no, $size=3) {
$mod = pow(10, $size);