浏览代码

space around = sign

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@40476 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 15 年之前
父节点
当前提交
61614fa9ca
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      raster/r.mapcalc/r.mapcalc.html

+ 1 - 1
raster/r.mapcalc/r.mapcalc.html

@@ -462,7 +462,7 @@ Example: The users wants the NULL-valued cells to be treated like zeros. To
 add maps A and B (where B contains NULLs) to get a map C the user can use a
 construction like:<p>
 <div class="code"><pre>
-C=A + if(isnull(B),0,B)
+C = A + if(isnull(B),0,B)
 </pre></div>
 <p>
 <b>NULL and conditions:</b>