Merge pull request #4766 from coderwander/master

Fix struct names
This commit is contained in:
Michael Eischer 2024-04-18 06:18:19 +00:00 committed by GitHub
commit 4d22412e0c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ func (e *vssError) Error() string {
return fmt.Sprintf("VSS error: %s: %s (%#x)", e.text, e.hresult.Str(), e.hresult)
}
// VssError encapsulates errors returned from calling VSS api.
// vssTextError encapsulates errors returned from calling VSS api.
type vssTextError struct {
text string
}

View File

@ -13,7 +13,7 @@ import (
// TestTree is used to construct a list of trees for testing the walker.
type TestTree map[string]interface{}
// TestNode is used to test the walker.
// TestFile is used to test the walker.
type TestFile struct {
Size uint64
}