We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5fe904 commit 7f46da0Copy full SHA for 7f46da0
1 file changed
errors.go
@@ -49,9 +49,13 @@
49
// invoked. This information can be retrieved with the following interface.
50
//
51
// type Stacktrace interface {
52
-// Stacktrace() []Frame
+// Stacktrace() errors.Stacktrace
53
// }
54
55
+// Where errors.Stacktrace is defined as
56
+//
57
+// type Stacktrace []Frame
58
59
// The Frame type represents a call site in the stacktrace. Frame supports
60
// the fmt.Formatter interface that can be used for printing information about
61
// the stacktrace of this error. For example:
0 commit comments