1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

chore: fix some function names in comment (#3967)

This commit is contained in:
Long FlyBridge 2024-12-01 11:29:09 +08:00 committed by GitHub
parent c1850d4ab5
commit ec6e091882
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 4 deletions

View File

@ -183,7 +183,7 @@ func (m *softTimeMaintainer) GetFieldNameAndTypeForDelete(
)
}
// getSoftFieldName retrieves and returns the field name of the table for possible key.
// getSoftFieldNameAndType retrieves and returns the field name of the table for possible key.
func (m *softTimeMaintainer) getSoftFieldNameAndType(
ctx context.Context,
schema string, table string, checkFiledNames []string,

View File

@ -207,7 +207,7 @@ func (j *Json) ToProperties() ([]byte, error) {
return gproperties.Encode(j.Map())
}
// TopropertiesString properties to string
// ToPropertiesString properties to string
func (j *Json) ToPropertiesString() (string, error) {
b, e := j.ToProperties()
return string(b), e
@ -221,7 +221,7 @@ func (j *Json) MustToProperties() []byte {
return result
}
// MustTopropertiesString
// MustToPropertiesString
func (j *Json) MustToPropertiesString() string {
return string(j.MustToProperties())
}

View File

@ -28,7 +28,7 @@ func init() {
go asyncProducingRandomBufferBytesLoop()
}
// asyncProducingRandomBufferBytes is a named goroutine, which uses an asynchronous goroutine
// asyncProducingRandomBufferBytesLoop is a named goroutine, which uses an asynchronous goroutine
// to produce the random bytes, and a buffer chan to store the random bytes.
// So it has high performance to generate random numbers.
func asyncProducingRandomBufferBytesLoop() {