Explorar o código

typo in post causing code formating failure

john melesky %!s(int64=8) %!d(string=hai) anos
pai
achega
9ab2bb7136
Modificáronse 1 ficheiros con 1 adicións e 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))