Preparing report...

Report for github.com/alibaba/open-local

A+    Excellent!    Found 48 issues across 115 files

Tweet

gofmt98%

Gofmt formats Go programs. We run gofmt -s on your code, where -s is for the "simplify" command


go_vet100%

go vet examines Go source code and reports suspicious constructs, such as Printf calls whose arguments do not align with the format string.

No problems detected. Good job!


gocyclo93%

Gocyclo calculates cyclomatic complexities of functions in Go source code. The cyclomatic complexity of a function is calculated according to the following rules: 1 is the base complexity of a function +1 for each 'if', 'for', 'case', '&&' or '||' Go Report Card warns on functions with cyclomatic complexity > 15.

    • open-local/pkg/csi/controllerserver.go
    • Line 118: warning: cyclomatic complexity 65 of function (*controllerServer).CreateVolume() is high (> 15) (gocyclo)
    • Line 404: warning: cyclomatic complexity 37 of function (*controllerServer).DeleteVolume() is high (> 15) (gocyclo)

golint60%

Golint is a linter for Go source code.

    • open-local/pkg/version/version.go
    • Line 22: warning: exported var Version should have comment or be unexported (golint)
    • Line 28: warning: exported const Name should have comment (or a comment on this block) or be unexported (golint)
    • Line 31: warning: exported function GetFullVersion should have comment or be unexported (golint)
    • Line 39: warning: exported function NameWithVersion should have comment or be unexported (golint)
    • open-local/pkg/scheduler/statussyncer/syncer.go
    • Line 36: warning: exported const EventReasonSuccess should have comment (or a comment on this block) or be unexported (golint)
    • Line 40: warning: exported type StatusSyncer should have comment or be unexported (golint)
    • Line 46: warning: exported function NewStatusSyncer should have comment or be unexported (golint)
    • Line 54: warning: exported method StatusSyncer.OnUpdateInitialized should have comment or be unexported (golint)
    • Line 129: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 163: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 179: warning: exported method StatusSyncer.UpdateFailedStatus should have comment or be unexported (golint)
    • Line 193: warning: exported method StatusSyncer.CleanStatus should have comment or be unexported (golint)
    • Line 207: warning: exported function FilterVGInfo should have comment or be unexported (golint)
    • Line 216: warning: exported function FilterMPInfo should have comment or be unexported (golint)
    • Line 225: warning: exported function FilterDeviceInfo should have comment or be unexported (golint)
    • Line 234: warning: exported function FilterInfo should have comment or be unexported (golint)
    • Line 255: warning: should omit 2nd value from range; this loop is equivalent to `for vg := range ...` (golint)
    • Line 262: warning: exported function SameStringSliceIgnoreOrder should have comment or be unexported (golint)
    • open-local/pkg/csi/csi.go
    • Line 25: warning: exported function NewDriver should have comment or be unexported (golint)
    • Line 46: warning: exported method CSIPlugin.Run should have comment or be unexported (golint)
    • open-local/pkg/scheduler/algorithm/util.go
    • Line 34: warning: error should be the last type when returning multiple items (golint)
    • Line 84: warning: error should be the last type when returning multiple items (golint)
    • Line 84: warning: exported function GetPodUnboundPvcs should have comment or be unexported (golint)
    • Line 103: warning: exported function GetAllPodPvcs should have comment or be unexported (golint)
    • Line 116: warning: exported function IsLSSNode should have comment or be unexported (golint)
    • Line 130: warning: exported function ExtractPVCKey should have comment or be unexported (golint)
    • Line 137: warning: comment on exported function ConvertAUFromPV should be of the form "ConvertAUFromPV ..." (golint)
    • open-local/pkg/scheduler/server/web.go
    • Line 52: warning: exported function NewExtenderServer should have comment or be unexported (golint)
    • Line 147: warning: exported type ExtenderServer should have comment or be unexported (golint)
    • Line 158: warning: exported method ExtenderServer.Start should have comment or be unexported (golint)
    • Line 169: warning: exported method ExtenderServer.InitRouter should have comment or be unexported (golint)
    • Line 207: warning: exported method ExtenderServer.WaitForCacheSync should have comment or be unexported (golint)
    • Line 216: warning: exported method ExtenderServer.TriggerPendingPodReschedule should have comment or be unexported (golint)
    • open-local/pkg/scheduler/server/apis/scheduling.go
    • Line 35: warning: comment on exported function SchedulingPVC should be of the form "SchedulingPVC ..." (golint)
    • Line 85: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 93: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 101: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • open-local/pkg/types.go
    • Line 26: warning: exported type VolumeType should have comment or be unexported (golint)
    • Line 27: warning: exported type MediaType should have comment or be unexported (golint)
    • Line 28: warning: exported type StrategyType should have comment or be unexported (golint)
    • Line 31: warning: exported const Gi should have comment (or a comment on this block) or be unexported (golint)
    • Line 53: warning: comment on exported const VolumeTypeKey should be of the form "VolumeTypeKey ..." (golint)
    • Line 66: warning: comment on exported const VolumeTypeMountPoint should be of the form "VolumeTypeMountPoint ..." (golint)
    • Line 76: warning: comment on exported const AnnSelectedNode should be of the form "AnnSelectedNode ..." (golint)
    • Line 100: warning: exported var ValidProvisionerNames should have comment or be unexported (golint)
    • Line 114: warning: exported type UpdateStatus should have comment or be unexported (golint)
    • Line 117: warning: exported var UpdateStatusPending should have comment or be unexported (golint)
    • Line 122: warning: exported type StorageSpecUpdateStatus should have comment or be unexported (golint)
    • Line 129: warning: exported function VolumeTypeFromString should have comment or be unexported (golint)
    • Line 138: warning: exported type NodeAntiAffinityWeight should have comment or be unexported (golint)
    • Line 142: warning: exported function NewNodeAntiAffinityWeight should have comment or be unexported (golint)
    • Line 146: warning: exported method NodeAntiAffinityWeight.Put should have comment or be unexported (golint)
    • Line 153: warning: exported method NodeAntiAffinityWeight.Get should have comment or be unexported (golint)
    • Line 158: warning: exported method NodeAntiAffinityWeight.Items should have comment or be unexported (golint)
    • open-local/pkg/scheduler/algorithm/cache/cluster.go
    • Line 31: warning: exported type ClusterInfo should have comment or be unexported (golint)
    • Line 45: warning: exported function NewClusterNodeCache should have comment or be unexported (golint)
    • Line 57: warning: exported method ClusterNodeCache.AddNodeCache should have comment or be unexported (golint)
    • Line 70: warning: exported method ClusterNodeCache.UpdateNodeCache should have comment or be unexported (golint)
    • Line 84: warning: exported method ClusterNodeCache.GetNodeCache should have comment or be unexported (golint)
    • Line 93: warning: exported method ClusterNodeCache.SetNodeCache should have comment or be unexported (golint)
    • Line 111: warning: exported method ClusterNodeCache.GetNodeNameFromPV should have comment or be unexported (golint)
    • Line 208: warning: exported method ClusterNodeCache.UpdateMetrics should have comment or be unexported (golint)
    • Line 259: warning: exported method ClusterNodeCache.ClearMetrics should have comment or be unexported (golint)
    • open-local/pkg/scheduler/algorithm/priorities/priorities.go
    • Line 27: warning: comment on exported var DefaultPrioritizeFuncs should be of the form "DefaultPrioritizeFuncs ..." (golint)
    • Line 36: warning: exported type PrioritizeFunc should have comment or be unexported (golint)
    • Line 38: warning: exported type Prioritize should have comment or be unexported (golint)
    • Line 44: warning: exported method Prioritize.Handler should have comment or be unexported (golint)
    • Line 81: warning: exported function NewPrioritize should have comment or be unexported (golint)
    • Line 88: warning: exported function InitHostPriorityList should have comment or be unexported (golint)
    • open-local/test/framework/defaults.go
    • Line 26: warning: comment on exported var DefaultNode should be of the form "DefaultNode ..." (golint)
    • Line 28: warning: comment on exported var DefaultLVMSC should be of the form "DefaultLVMSC ..." (golint)
    • Line 31: warning: exported var DefaultLVMPVC should have comment or be unexported (golint)
    • Line 34: warning: comment on exported var DefaultMPSC should be of the form "DefaultMPSC ..." (golint)
    • Line 39: warning: comment on exported var DefaultDeviceSC should be of the form "DefaultDeviceSC ..." (golint)
    • Line 44: warning: comment on exported var DefaultVGName should be of the form "DefaultVGName ..." (golint)
    • Line 48: warning: exported function MakeDefaultLVMStorageClass should have comment or be unexported (golint)
    • Line 69: warning: exported function MakeDefaultMPStorageClass should have comment or be unexported (golint)
    • Line 89: warning: exported function MakeDefaultDeviceStorageClass should have comment or be unexported (golint)
    • open-local/test/framework/util.go
    • Line 29: warning: exported function MakeLVMPVC should have comment or be unexported (golint)
    • Line 71: warning: exported function MakeMPPVC should have comment or be unexported (golint)
    • Line 113: warning: exported function MakeDevicePVC should have comment or be unexported (golint)
    • Line 155: warning: exported function MakeLVMPV should have comment or be unexported (golint)
    • Line 159: warning: exported function MakeMPPV should have comment or be unexported (golint)
    • Line 163: warning: exported function MakeDevicePV should have comment or be unexported (golint)
    • Line 167: warning: exported function MakePV should have comment or be unexported (golint)
    • Line 217: warning: exported function MakePodMP should have comment or be unexported (golint)
    • Line 238: warning: comment on exported function MakePod should be of the form "MakePod ..." (golint)
    • Line 284: warning: exported function MakeNode should have comment or be unexported (golint)
    • Line 295: warning: exported function GenVolumeNodeAffinity should have comment or be unexported (golint)
    • open-local/pkg/utils/common.go
    • Line 56: warning: comment on exported function ContainsString should be of the form "ContainsString ..." (golint)
    • Line 66: warning: exported function IsLocalPV should have comment or be unexported (golint)
    • Line 140: warning: exported function GetVGRequested should have comment or be unexported (golint)
    • Line 156: warning: comment on exported function CheckMountPointOptions should be of the form "CheckMountPointOptions ..." (golint)
    • Line 181: warning: exported function IsEmpty should have comment or be unexported (golint)
    • Line 188: warning: exported function HttpResponse should have comment or be unexported (golint)
    • Line 193: warning: exported function HttpJSON should have comment or be unexported (golint)
    • Line 209: warning: exported function SliceEquals should have comment or be unexported (golint)
    • Line 213: warning: exported function GetAddedAndRemovedItems should have comment or be unexported (golint)
    • Line 232: warning: exported function ContainsProvisioner should have comment or be unexported (golint)
    • Line 241: warning: exported function HashSpec should have comment or be unexported (golint)
    • Line 247: warning: exported function HashStorageSpec should have comment or be unexported (golint)
    • Line 276: warning: exported function GetPVStorageSize should have comment or be unexported (golint)
    • Line 279: warning: if block ends with a return statement, so drop this else and outdent its block (move short variable declaration to its own line if necessary) (golint)
    • Line 284: warning: exported function GetPVFromBoundPVC should have comment or be unexported (golint)
    • Line 292: warning: exported function GetStorageClassFromPVC should have comment or be unexported (golint)
    • Line 307: warning: exported function GetStorageClassFromPV should have comment or be unexported (golint)
    • Line 322: warning: exported function GetVGNameFromPVC should have comment or be unexported (golint)
    • Line 335: warning: exported function GetMediaTypeFromPVC should have comment or be unexported (golint)
    • Line 348: warning: exported function IsLocalPVC should have comment or be unexported (golint)
    • Line 362: warning: exported function IsLSSPV should have comment or be unexported (golint)
    • Line 391: warning: exported function IsLSSSnapshotPVC should have comment or be unexported (golint)
    • Line 408: warning: exported function IsSnapshotPVC should have comment or be unexported (golint)
    • Line 416: warning: exported function ContainsSnapshotPVC should have comment or be unexported (golint)
    • Line 427: warning: exported function LSSPVType should have comment or be unexported (golint)
    • Line 439: warning: exported function GetPVCRequested should have comment or be unexported (golint)
    • Line 453: warning: exported function GetPVSize should have comment or be unexported (golint)
    • Line 463: warning: exported function PVCName should have comment or be unexported (golint)
    • Line 483: warning: exported function PvcContainsSelectedNode should have comment or be unexported (golint)
    • Line 497: warning: exported function PodName should have comment or be unexported (golint)
    • open-local/pkg/apis/storage/v1alpha1/types.go
    • Line 72: warning: exported type ListConfig should have comment or be unexported (golint)
    • Line 83: warning: exported type VGList should have comment or be unexported (golint)
    • Line 92: warning: exported type MountPointList should have comment or be unexported (golint)
    • Line 101: warning: exported type DeviceList should have comment or be unexported (golint)
    • Line 110: warning: exported type ResourceToBeInited should have comment or be unexported (golint)
    • Line 123: warning: exported type VGToBeInited should have comment or be unexported (golint)
    • Line 135: warning: exported type MountPointToBeInited should have comment or be unexported (golint)
    • Line 171: warning: exported type UpdateStatus should have comment or be unexported (golint)
    • Line 174: warning: exported var UpdateStatusPending should have comment or be unexported (golint)
    • Line 179: warning: exported type UpdateStatusInfo should have comment or be unexported (golint)
    • Line 197: warning: exported type StoragePhase should have comment or be unexported (golint)
    • Line 263: warning: comment on exported type DeviceInfo should be of the form "DeviceInfo ..." (with optional leading article) (golint)
    • Line 277: warning: exported type StorageConditionType should have comment or be unexported (golint)
    • Line 295: warning: exported type ConditionStatus should have comment or be unexported (golint)
    • open-local/pkg/scheduler/errors/predicate.go
    • Line 25: warning: comment on exported type PredicateError should be of the form "PredicateError ..." (with optional leading article) (golint)
    • Line 43: warning: exported method NotSuchVGError.GetReason should have comment or be unexported (golint)
    • Line 51: warning: exported function NewNotSuchVGError should have comment or be unexported (golint)
    • Line 64: warning: exported method NoAvailableVGError.GetReason should have comment or be unexported (golint)
    • Line 72: warning: exported function NewNoAvailableVGError should have comment or be unexported (golint)
    • Line 79: warning: exported type InsufficientLVMError should have comment or be unexported (golint)
    • Line 86: warning: exported method InsufficientLVMError.GetReason should have comment or be unexported (golint)
    • Line 95: warning: exported function NewInsufficientLVMError should have comment or be unexported (golint)
    • Line 104: warning: exported type InsufficientDeviceError should have comment or be unexported (golint)
    • Line 111: warning: exported method InsufficientDeviceError.GetReason should have comment or be unexported (golint)
    • Line 120: warning: exported function NewInsufficientDeviceError should have comment or be unexported (golint)
    • Line 129: warning: exported type InsufficientMountPointError should have comment or be unexported (golint)
    • Line 137: warning: exported method InsufficientMountPointError.GetReason should have comment or be unexported (golint)
    • Line 146: warning: exported function NewInsufficientMountPointError should have comment or be unexported (golint)
    • Line 156: warning: exported type InsufficientExclusiveResourceError should have comment or be unexported (golint)
    • Line 163: warning: exported method InsufficientExclusiveResourceError.GetReason should have comment or be unexported (golint)
    • Line 172: warning: exported function NewInsufficientExclusiveResourceError should have comment or be unexported (golint)
    • open-local/pkg/scheduler/algorithm/algo/common.go
    • Line 33: warning: exported const MinScore should have comment or be unexported (golint)
    • Line 34: warning: exported const MaxScore should have comment or be unexported (golint)
    • Line 59: warning: exported function ProcessLVMPVCPredicate should have comment or be unexported (golint)
    • Line 172: warning: exported function AllocateMountPointVolume should have comment or be unexported (golint)
    • Line 189: warning: exported function ProcessMPPVC should have comment or be unexported (golint)
    • Line 290: warning: exported function CheckExclusiveResourceMeetsPVCSize should have comment or be unexported (golint)
    • Line 352: warning: exported function AllocateDeviceVolume should have comment or be unexported (golint)
    • Line 394: warning: exported function ProcessDevicePVC should have comment or be unexported (golint)
    • Line 450: warning: comment on exported function ProcessSnapshotPVC should be of the form "ProcessSnapshotPVC ..." (golint)
    • Line 487: warning: exported function ScoreLVMVolume should have comment or be unexported (golint)
    • Line 511: warning: exported function ProcessLVMPVCPriority should have comment or be unexported (golint)
    • Line 575: warning: exported function Binpack should have comment or be unexported (golint)
    • Line 622: warning: exported function Spread should have comment or be unexported (golint)
    • Line 661: warning: exported function ScoreLVM should have comment or be unexported (golint)
    • Line 697: warning: exported function ScoreMountPointVolume should have comment or be unexported (golint)
    • Line 721: warning: exported function ScoreMP should have comment or be unexported (golint)
    • Line 731: warning: exported function ScoreDeviceVolume should have comment or be unexported (golint)
    • Line 756: warning: exported function ScoreDevice should have comment or be unexported (golint)
    • open-local/pkg/scheduler/algorithm/cache/node.go
    • Line 31: warning: exported function NewNodeCache should have comment or be unexported (golint)
    • Line 44: warning: exported function NewNodeCacheFromStorage should have comment or be unexported (golint)
    • Line 113: warning: exported method NodeCache.UpdateNodeInfo should have comment or be unexported (golint)
    • Line 266: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 337: warning: exported method NodeCache.RemoveLVM should have comment or be unexported (golint)
    • Line 363: warning: exported method NodeCache.AddLocalMountPoint should have comment or be unexported (golint)
    • Line 391: warning: exported method NodeCache.RemoveLocalMountPoint should have comment or be unexported (golint)
    • Line 414: warning: exported method NodeCache.AddLocalDevice should have comment or be unexported (golint)
    • Line 424: warning: if block ends with a return statement, so drop this else and outdent its block (golint)
    • Line 441: warning: exported method NodeCache.RemoveLocalDevice should have comment or be unexported (golint)
    • open-local/pkg/utils/lvm/lvm.go
    • Line 32: warning: comment on exported var Verbose should be of the form "Verbose ..." (golint)
    • Line 48: warning: exported const ErrNoSpace should have comment or be unexported (golint)
    • Line 49: warning: exported const ErrPhysicalVolumeNotFound should have comment or be unexported (golint)
    • Line 50: warning: exported const ErrVolumeGroupNotFound should have comment or be unexported (golint)
    • Line 54: warning: exported const ErrInvalidVGName should have comment or be unexported (golint)
    • Line 58: warning: exported const ErrInvalidLVName should have comment or be unexported (golint)
    • Line 62: warning: exported const ErrTagInvalidLength should have comment or be unexported (golint)
    • Line 63: warning: exported const ErrTagHasInvalidChars should have comment or be unexported (golint)
    • Line 65: warning: exported type PhysicalVolume should have comment or be unexported (golint)
    • Line 87: warning: exported type VolumeGroup should have comment or be unexported (golint)
    • Line 91: warning: exported method VolumeGroup.Name should have comment or be unexported (golint)
    • Line 238: warning: exported const ErrLogicalVolumeNotFound should have comment or be unexported (golint)
    • Line 254: warning: exported function IsLogicalVolumeNotFound should have comment or be unexported (golint)
    • Line 300: warning: comment on exported method VolumeGroup.ListLogicalVolumeNames should be of the form "ListLogicalVolumeNames ..." (golint)
    • Line 318: warning: exported function IsPhysicalVolumeNotFound should have comment or be unexported (golint)
    • Line 351: warning: exported function IsVolumeGroupNotFound should have comment or be unexported (golint)
    • Line 418: warning: exported type LogicalVolume should have comment or be unexported (golint)
    • Line 426: warning: exported method LogicalVolume.Name should have comment or be unexported (golint)
    • Line 430: warning: exported method LogicalVolume.SizeInBytes should have comment or be unexported (golint)
    • Line 434: warning: exported method LogicalVolume.OriginLVName should have comment or be unexported (golint)
    • Line 438: warning: exported method LogicalVolume.Usage should have comment or be unexported (golint)
    • Line 485: warning: exported method LogicalVolume.IsSnapshot should have comment or be unexported (golint)
    • Line 492: warning: exported method LogicalVolume.Remove should have comment or be unexported (golint)
    • Line 500: warning: exported method LogicalVolume.Expand should have comment or be unexported (golint)
    • open-local/pkg/scheduler/server/routes.go
    • Line 58: warning: exported function PredicateRoute should have comment or be unexported (golint)
    • Line 90: warning: exported function PrioritizeRoute should have comment or be unexported (golint)
    • Line 122: warning: exported function BindRoute should have comment or be unexported (golint)
    • Line 152: warning: exported function PreemptionRoute should have comment or be unexported (golint)
    • Line 182: warning: exported function VersionRoute should have comment or be unexported (golint)
    • Line 186: warning: exported function AddVersion should have comment or be unexported (golint)
    • Line 190: warning: exported function AddMetrics should have comment or be unexported (golint)
    • Line 195: warning: exported function DebugLogging should have comment or be unexported (golint)
    • Line 205: warning: exported function AddPredicate should have comment or be unexported (golint)
    • Line 210: warning: exported function AddPrioritize should have comment or be unexported (golint)
    • Line 215: warning: exported function AddBind should have comment or be unexported (golint)
    • Line 223: warning: exported function AddPreemption should have comment or be unexported (golint)
    • open-local/pkg/scheduler/algorithm/predicates/predicates.go
    • Line 30: warning: exported type Predicate should have comment or be unexported (golint)
    • Line 41: warning: exported type PredicateFunc should have comment or be unexported (golint)
    • Line 44: warning: comment on exported var DefaultPredicateFuncs should be of the form "DefaultPredicateFuncs ..." (golint)
    • Line 51: warning: exported method Predicate.Handler should have comment or be unexported (golint)
    • Line 125: warning: exported function Predicates should have comment or be unexported (golint)
    • Line 167: warning: comment on exported const LuckyPredFailMsg should be of the form "LuckyPredFailMsg ..." (golint)
    • Line 171: warning: exported function LuckyPredicate should have comment or be unexported (golint)
    • Line 181: warning: exported function NewPredicate should have comment or be unexported (golint)
    • open-local/pkg/scheduler/algorithm/cache/types.go
    • Line 28: warning: exported type NodeInfo should have comment or be unexported (golint)
    • Line 39: warning: exported type NodeCache should have comment or be unexported (golint)
    • Line 44: warning: exported type ResourceType should have comment or be unexported (golint)
    • Line 45: warning: exported type ResourceName should have comment or be unexported (golint)
    • Line 48: warning: exported const SharedResourceType should have comment (or a comment on this block) or be unexported (golint)
    • Line 52: warning: exported type ExclusiveResource should have comment or be unexported (golint)
    • Line 61: warning: exported type SharedResource should have comment or be unexported (golint)
    • Line 67: warning: exported type AllocatedUnit should have comment or be unexported (golint)
    • Line 78: warning: comment on exported type BindingMap should be of the form "BindingMap ..." (with optional leading article) (golint)
    • Line 81: warning: exported method BindingMap.IsPVCExists should have comment or be unexported (golint)
    • Line 91: warning: comment on exported type PvcStatusInfo should be of the form "PvcStatusInfo ..." (with optional leading article) (golint)
    • Line 96: warning: exported type PodPvcMapping should have comment or be unexported (golint)
    • Line 107: warning: exported function NewPodPvcMapping should have comment or be unexported (golint)
    • Line 114: warning: exported function NewPvcStatusInfo should have comment or be unexported (golint)
    • open-local/pkg/csi/type.go
    • Line 25: warning: exported const DefaultEndpoint should have comment (or a comment on this block) or be unexported (golint)
    • Line 29: warning: exported type CSIPlugin should have comment or be unexported (golint)
    • open-local/pkg/scheduler/algorithm/interface.go
    • Line 32: warning: exported type DiskBindingResult should have comment or be unexported (golint)
    • Line 48: warning: exported type SchedulingContext should have comment or be unexported (golint)
    • Line 58: warning: exported function NewSchedulingContext should have comment or be unexported (golint)

ineffassign100%

IneffAssign detects ineffectual assignments in Go code.

No problems detected. Good job!


license100%

Checks whether your project has a LICENSE file.

No problems detected. Good job!


misspell100%

Misspell Finds commonly misspelled English words

No problems detected. Good job!