Explorar o código

space around = sign

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@40476 15284696-431f-4ddb-bdfa-cd5b030d7da7
Hamish Bowman %!s(int64=15) %!d(string=hai) anos
pai
achega
61614fa9ca
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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>