Browse Source

space around = sign

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@40476 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman 15 năm trước cách đây
mục cha
commit
61614fa9ca
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  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>