Skip to content

Commit ea41fe2

Browse files
committed
Fix typo in main thread detection comment
1 parent c2d4bc5 commit ea41fe2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

sentry-android-core/src/main/java/io/sentry/android/core/internal/tombstone/TombstoneParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ private List<SentryThread> createThreads(
118118
// thread id always equals the process id,
119119
// so we use it to reliably detect the main thread
120120
if (tombstone.pid == threadEntryValue.id) {
121-
// the OS may provides a (truncated) process name; normalize it
121+
// the OS may provide a (truncated) process name; normalize it
122122
// back to "main" so downstream consumers see a consistent name
123123
thread.setName("main");
124124
thread.setMain(true);

0 commit comments

Comments
 (0)