summaryrefslogtreecommitdiff
path: root/absl/debugging/internal/stacktrace_aarch64-inl.inc
diff options
context:
space:
mode:
authorGravatar Copybara-Service <copybara-worker@google.com>2023-05-01 12:43:41 -0700
committerGravatar Copybara-Service <copybara-worker@google.com>2023-05-01 12:43:41 -0700
commit201c426c122a779382208c9347b35fd696cc3a3c (patch)
tree0231ec20d7bd2625782f5c6cd94ac837ce6bb874 /absl/debugging/internal/stacktrace_aarch64-inl.inc
parente9a7eea615352e2f74c13585a4b031f868b3bfa7 (diff)
parent9c32e50df8e7bbd777c64107e7580ed434f003c0 (diff)
Merge pull request #1438 from Vertexwahn:fix-spelling
PiperOrigin-RevId: 528547013 Change-Id: I9b57ee062ef666d6a34696778ff16a46c5ccb17d
Diffstat (limited to 'absl/debugging/internal/stacktrace_aarch64-inl.inc')
-rw-r--r--absl/debugging/internal/stacktrace_aarch64-inl.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/debugging/internal/stacktrace_aarch64-inl.inc b/absl/debugging/internal/stacktrace_aarch64-inl.inc
index 4fc87f51..b66beba2 100644
--- a/absl/debugging/internal/stacktrace_aarch64-inl.inc
+++ b/absl/debugging/internal/stacktrace_aarch64-inl.inc
@@ -144,7 +144,7 @@ static int UnwindImpl(void** result, int* sizes, int max_depth, int skip_count,
// The frame pointer points to low address of a frame. The first 64-bit
// word of a frame points to the next frame up the call chain, which normally
// is just after the high address of the current frame. The second word of
- // a frame contains return adress of to the caller. To find a pc value
+ // a frame contains return address of to the caller. To find a pc value
// associated with the current frame, we need to go down a level in the call
// chain. So we remember return the address of the last frame seen. This
// does not work for the first stack frame, which belongs to UnwindImp() but