File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,10 +12,10 @@ revert** (for example, large CLs or stacks of CLs).
12
12
13
13
If you plan on working on a change that may be risky, please do the following:
14
14
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
16
16
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 ` .
19
19
That way we can find them without missing any, and they can be cleaned up when we get to the
20
20
Go 1.26 cycle.
21
21
2 . Consider how you would answer the following questions for your change:
You can’t perform that action at this time.
0 commit comments