瀏覽代碼

typo in post causing code formating failure

john melesky 8 年之前
父節點
當前提交
9ab2bb7136
共有 1 個文件被更改,包括 1 次插入0 次删除
  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))