Skip to content

Commit

Permalink
style: modify typo and remove repeated type conversions
Browse files Browse the repository at this point in the history
  • Loading branch information
li-jin-gou committed Nov 17, 2022
1 parent 8f43443 commit 6694f82
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bytesconv.go
Expand Up @@ -234,7 +234,7 @@ func ParseUfloat(buf []byte) (float64, error) {
if err != nil {
return -1, errInvalidFloatExponent
}
return float64(v) * offset * math.Pow10(minus*int(vv)), nil
return float64(v) * offset * math.Pow10(minus*vv), nil
}
return -1, errUnexpectedFloatChar
}
Expand Down
2 changes: 1 addition & 1 deletion header.go
Expand Up @@ -109,7 +109,7 @@ func (h *ResponseHeader) SetContentRange(startPos, endPos, contentLength int) {
h.setNonSpecial(strContentRange, h.bufKV.value)
}

// SetByteRange sets 'Range: bytes=startPos-endPos' header.
// SetByteRanges sets 'Range: bytes=startPos-endPos' header.
//
// - If startPos is negative, then 'bytes=-startPos' value is set.
// - If endPos is negative, then 'bytes=startPos-' value is set.
Expand Down
2 changes: 1 addition & 1 deletion server.go
Expand Up @@ -2103,7 +2103,7 @@ func (s *Server) serveConn(c net.Conn) (err error) {

connectionClose bool

continueReadingRequest bool = true
continueReadingRequest = true
)
for {
connRequestNum++
Expand Down

0 comments on commit 6694f82

Please sign in to comment.