Skip to content

Commit b1a0705

Browse files
committed
RiskyChanges.md: use code formatting in a few places
Change-Id: I6ead576a7ab498303358fcd583889d731e6f4907 Reviewed-on: https://go-review.googlesource.com/c/wiki/+/643296 Reviewed-by: Michael Knyszek <[email protected]>
1 parent 0027f88 commit b1a0705

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

RiskyChanges.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ revert** (for example, large CLs or stacks of CLs).
1212

1313
If you plan on working on a change that may be risky, please do the following:
1414
1. Unless the entire change is absolutely trivial to revert, protect the new code paths with a
15-
boolean flag, prefixed with "go125", that can be used to quickly toggle back to the old
15+
boolean flag, prefixed with `go125`, that can be used to quickly toggle back to the old
1616
implementation.
17-
It can be a simple bool constant, for example, const go125UseEvenBetterLinker = true.
18-
Such flags **must be findable** by a simple grep for the string "go125".
17+
It can be a simple bool constant, for example, `const go125UseEvenBetterLinker = true`.
18+
Such flags **must be findable** by a simple grep for the string `go125`.
1919
That way we can find them without missing any, and they can be cleaned up when we get to the
2020
Go 1.26 cycle.
2121
2. Consider how you would answer the following questions for your change:

0 commit comments

Comments
 (0)