Skip to content

Commit 0646a71

Browse files
authored
Update README.md
1 parent 10e1e49 commit 0646a71

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,11 @@ rdeadcode -file path/to/your/file.go -function deadFunction
2525

2626
## Known issues
2727

28-
> [!WARNING] > _deadcode_ detects methods that implement an interface as dead code if it is not used in the project.
28+
> [!WARNING]
29+
> _deadcode_ detects methods that implement an interface as dead code if it is not used in the project.
2930
31+
Please verify the interface compliance at compile time and restore the method when rdeadcode removes it.
32+
3033
```go
3134
// Verify interface compliance at compile time
3235
var _ fmt.Stringer = myString{}
@@ -39,5 +42,3 @@ func (s myString) String() string {
3942
return s.Value
4043
}
4144
```
42-
43-
Please verify the interface compliance at compile time and restore the method when rdeadcode removes it.

0 commit comments

Comments
 (0)