Skip to content

Commit fe173f5

Browse files
committed
chore: Fix format
Signed-off-by: Kemal Akkoyun <[email protected]>
1 parent 4c9d5a2 commit fe173f5

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

internal/stacktrace/stacktrace.go

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -188,14 +188,15 @@ func (q *queue[T]) Remove() T {
188188
// - Generics: pkg.(*Type[...]).Method or pkg.Function[...]
189189
//
190190
// Examples:
191-
// github.com/DataDog/dd-trace-go/v2/internal/stacktrace.(*Event).NewException
192-
// -> package: github.com/DataDog/dd-trace-go/v2/internal/stacktrace
193-
// -> receiver: *Event
194-
// -> function: NewException
195-
// github.com/DataDog/dd-trace-go/v2/internal/stacktrace.TestFunc.func1
196-
// -> package: github.com/DataDog/dd-trace-go/v2/internal/stacktrace
197-
// -> receiver: ""
198-
// -> function: TestFunc.func1
191+
//
192+
// github.com/DataDog/dd-trace-go/v2/internal/stacktrace.(*Event).NewException
193+
// -> package: github.com/DataDog/dd-trace-go/v2/internal/stacktrace
194+
// -> receiver: *Event
195+
// -> function: NewException
196+
// github.com/DataDog/dd-trace-go/v2/internal/stacktrace.TestFunc.func1
197+
// -> package: github.com/DataDog/dd-trace-go/v2/internal/stacktrace
198+
// -> receiver: ""
199+
// -> function: TestFunc.func1
199200
func parseSymbol(name string) symbol {
200201
// Check for receiver first: pkg.(*Type) or pkg.(Type)
201202
// Look for ".(" which marks the start of a receiver

0 commit comments

Comments
 (0)