OSDN Git Service

Fix doc formatting.
authorNicolas Capens <capn@google.com>
Thu, 8 Dec 2016 15:57:43 +0000 (10:57 -0500)
committerNicolas Capens <capn@google.com>
Thu, 8 Dec 2016 16:03:19 +0000 (16:03 +0000)
Change-Id: I1387cd9c1666bbb736f75d84679672f1b6964f48
Reviewed-on: https://swiftshader-review.googlesource.com/8270
Reviewed-by: Nicolas Capens <capn@google.com>
Tested-by: Nicolas Capens <capn@google.com>
docs/Reactor.md

index 6a77ca2..682052f 100644 (file)
@@ -149,20 +149,20 @@ Pointers also use a template class:
 Function<Int(Pointer<Int>)> function;\r
 {\r
     Pointer<Int> x = function.Arg<0>();\r
-   \r
+\r
     Int dereference = *x;\r
-   \r
+\r
     Return(dereference);\r
 }\r
 ```\r
 \r
-Pointer arithmetic is only supported on Pointer<Byte>, and can be used to address structure fields:\r
+Pointer arithmetic is only supported on ```Pointer<Byte>```, and can be used to access structure fields:\r
 \r
 ```C++\r
 struct S\r
 {\r
     int x;\r
-    int y;    \r
+    int y;\r
 };\r
 \r
 Function<Int(Pointer<Byte>)> function;\r