Fix doc comments

This commit is contained in:
Nicolas JUHEL
2020-05-11 16:01:20 +02:00
parent 9b4f2aa888
commit 77b4102b8a

View File

@@ -70,12 +70,12 @@ func (e errorCode) Trace() runtime.Frame {
return e.trace
}
// ErrorWithCode return a error type of the current code, with error and origin in reference
// StringFull return a error type of the current code, with error and origin in reference
func (e errorCode) StringFull() string {
return e.ErrorFull().Error()
}
// ErrorWithCode return a error type of the current code, with error and origin in reference
// ErrorFull return a error type of the current code, with error and origin in reference
func (e errorCode) ErrorFull() error {
if e.trace != getNilFrame() {