refactor: 注释优化

This commit is contained in:
meilin.huang
2026-02-10 18:12:41 +08:00
parent 9bb9861d88
commit f91b89f38a
21 changed files with 57 additions and 57 deletions

View File

@@ -10,7 +10,7 @@ type QuoteChar struct {
/**
* Wrap value with quote character.
*
* @param value value to be wrapped
* - value value to be wrapped
* @return wrapped value
*/
func (qc *QuoteChar) Wrap(value string) string {
@@ -20,7 +20,7 @@ func (qc *QuoteChar) Wrap(value string) string {
/**
* Unwrap value with quote character.
*
* @param value value to be unwrapped
* - value value to be unwrapped
* @return unwrapped value
*/
func (qc *QuoteChar) Unwrap(value string) string {
@@ -33,7 +33,7 @@ func (qc *QuoteChar) Unwrap(value string) string {
/**
* Is wrapped by quote character.
*
* @param value value to be judged
* - value value to be judged
* @return is wrapped or not
*/
func (qc *QuoteChar) IsWrapped(value string) bool {