We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50edde1 commit f68ad77Copy full SHA for f68ad77
components/scrubber/scrubber.go
@@ -45,7 +45,7 @@ Example:
45
}
46
*/
47
type TrustedValue interface {
48
- isTrustedValue()
+ IsTrustedValue()
49
50
51
// Scrubber defines the interface for a scrubber, which can sanitise various types of data.
components/scrubber/scrubber_test.go
@@ -67,7 +67,7 @@ type TrustedStructToTest struct {
67
StructToTest
68
69
70
-func (TrustedStructToTest) isTrustedValue() {}
+func (TrustedStructToTest) IsTrustedValue() {}
71
72
func scrubStructToTestAsTrustedValue(v *StructToTest) TrustedValue {
73
return scrubStructToTest(v)
0 commit comments