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:
parent
c1850d4ab5
commit
ec6e091882
@ -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,
|
||||
|
@ -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())
|
||||
}
|
||||
|
@ -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() {
|
||||
|
Loading…
x
Reference in New Issue
Block a user