Correct the typo

This commit is contained in:
skiffer-git 2024-03-28 10:49:29 +08:00
parent a8c0250944
commit 32aeab262e

View File

@ -541,9 +541,9 @@ var LintGonicMapper = GonicMapper{
- If the variable type is bool, the name should start with Has, Is, Can or Allow, for example: - If the variable type is bool, the name should start with Has, Is, Can or Allow, for example:
```go ```go
var has Conflict bool var hasConflict bool
var isExist bool var isExist bool
var can Manage bool var canManage bool
var allowGitHook bool var allowGitHook bool
``` ```