Explorar el Código

typo in post causing code formating failure

john melesky hace 8 años
padre
commit
9ab2bb7136
Se han modificado 1 ficheros con 1 adiciones y 0 borrados
  1. 1 0
      posts/2016-08-25-different-distances.md

+ 1 - 0
posts/2016-08-25-different-distances.md

@@ -222,6 +222,7 @@ $$d_2 = \lfloor 1.5 \times (\min(|x_1 - x_2|, |y_1 - y_2|))\rfloor$$
 $$d  = d_1 + d_2$$
 
 And in code, that looks like this[^odd]:
+
 ~~~ {.python}
 def dandddistance(x1, y1, x2, y2):
     mindist = min(abs(x1 - x2), abs(y1 - y2))