[DOC] fix :code: markup syntax (#3140)
authorMarcus Shawcroft <marcus.shawcroft@arm.com>
Wed, 8 May 2019 04:50:44 +0000 (05:50 +0100)
committerTianqi Chen <tqchen@users.noreply.github.com>
Wed, 8 May 2019 04:50:44 +0000 (00:50 -0400)
tutorials/topi/intro_topi.py

index 0b0d1c8..6c7bb6a 100644 (file)
@@ -50,8 +50,8 @@ print(tvm.lower(s, [A], simple_mode=True))
 
 ######################################################################
 # However, for such a common operation we had to define the reduce axis ourselves as well as explicit computation with
-# :code: `tvm.compute`. Imagine for more complicated operations how much details we need to provide.
-# Fortunately, we can replace those two lines with simple :code:`topi.sum` much like :code`numpy.sum`
+# :code:`tvm.compute`. Imagine for more complicated operations how much details we need to provide.
+# Fortunately, we can replace those two lines with simple :code:`topi.sum` much like :code:`numpy.sum`
 #
 C = topi.sum(A, axis=1)
 ts = tvm.create_schedule(C.op)