Skip to content

Commit

Permalink
add: 去掉空格
Browse files Browse the repository at this point in the history
  • Loading branch information
chengwei committed Nov 24, 2023
1 parent 732c153 commit 351b95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/think/db/Driver.php
Original file line number Diff line number Diff line change
Expand Up @@ -982,7 +982,7 @@ protected function parseComment($comment)
*/
protected function parseHint($hint)
{
return !empty($hint) ? ' /*' . $hint . '*/' : '';
return !empty($hint) ? '/*' . $hint . '*/' : '';
}

/**
Expand Down

0 comments on commit 351b95c

Please sign in to comment.