diff options
author | Rob Pike <r@golang.org> | 2014-01-23 15:50:34 -0800 |
---|---|---|
committer | Rob Pike <r@golang.org> | 2014-01-23 15:50:34 -0800 |
commit | a24c05a6b1b278aa906247fc980be9d1349429b2 (patch) | |
tree | 13587052201aea9cd66371f4bf426b883b280199 | |
parent | 72cbe40bd21b7ac8402618e0d0b8337d910eaa44 (diff) |
laws-of-reflection: fix formatting of second law
Need a space after the * at the beginning of line to trigger the bold.
Otherwise we see a literal star and no bold.
R=adg
CC=golang-codereviews
https://golang.org/cl/56180045
-rw-r--r-- | content/laws-of-reflection.article | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/laws-of-reflection.article b/content/laws-of-reflection.article index a3417c7..88d3a3f 100644 --- a/content/laws-of-reflection.article +++ b/content/laws-of-reflection.article @@ -162,7 +162,7 @@ the `Kind` of `v` is still `reflect.Int`, even though the static type of `x` is * The second law of reflection -*2. Reflection goes from reflection object to interface value. +* 2. Reflection goes from reflection object to interface value. Like physical reflection, reflection in Go generates its own inverse. |