File tree 5 files changed +5
-5
lines changed 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ func schedule(f *Func) {
179
179
// scored CarryChainTail (and prove w is not a tail).
180
180
score [w .ID ] = ScoreFlags
181
181
}
182
- // Verify v has not been scored. If v has not been visited, v may be the
182
+ // Verify v has not been scored. If v has not been visited, v may be
183
183
// the final (tail) operation in a carry chain. If v is not, v will be
184
184
// rescored above when v's carry-using op is scored. When scoring is done,
185
185
// only tail operations will retain the CarryChainTail score.
Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ greater than the max then the assembler sets it to the max for that size (31 for
198
198
32 bit values, 63 for 64 bit values). If the shift count is in a register, then
199
199
only the low 5 or 6 bits of the register will be used as the shift count. The
200
200
Go compiler will add appropriate code to compare the shift value to achieve the
201
- the correct result, and the assembler does not add extra checking.
201
+ correct result, and the assembler does not add extra checking.
202
202
203
203
Examples:
204
204
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ func (out *OutBuf) fallocate(size uint64) error {
24
24
}
25
25
// F_PEOFPOSMODE allocates from the end of the file, so we want the size difference.
26
26
// Apparently, it uses the end of the allocation, instead of the logical end of the
27
- // the file.
27
+ // file.
28
28
cursize := uint64 (stat .Sys ().(* syscall.Stat_t ).Blocks * 512 ) // allocated size
29
29
if size <= cursize {
30
30
return nil
Original file line number Diff line number Diff line change @@ -725,7 +725,7 @@ type Config struct {
725
725
726
726
// mutex protects sessionTicketKeys and autoSessionTicketKeys.
727
727
mutex sync.RWMutex
728
- // sessionTicketKeys contains zero or more ticket keys. If set, it means the
728
+ // sessionTicketKeys contains zero or more ticket keys. If set, it means
729
729
// the keys were set with SessionTicketKey or SetSessionTicketKeys. The
730
730
// first key is used for new tickets and any subsequent keys can be used to
731
731
// decrypt old tickets. The slice contents are not protected by the mutex
Original file line number Diff line number Diff line change @@ -112,7 +112,7 @@ type ReverseProxy struct {
112
112
// At most one of Rewrite or Director may be set.
113
113
Rewrite func (* ProxyRequest )
114
114
115
- // Director is a function which modifies the
115
+ // Director is a function which modifies
116
116
// the request into a new request to be sent
117
117
// using Transport. Its response is then copied
118
118
// back to the original client unmodified.
You can’t perform that action at this time.
0 commit comments