From 4b3c425902dd64cceab54a3e0f81c3f77725213e Mon Sep 17 00:00:00 2001 From: Scott Babcock Date: Sun, 15 May 2022 12:51:05 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 25562bc..ddf7f8b 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ ## StackTrace -The **StackTrace** class extents **Throwable** and it's intended to facilitate capture of the flow of execution that triggered system state changes that may lead to future operation errors. For example, an object that's no longer valid might get used subsequent to the event that caused it to become invalid, or a long-lived object may get discarded without corresponding resources being cleaned up. +The **StackTrace** class extends **Throwable** and it's intended to facilitate capture of the flow of execution that triggered system state changes that may lead to future operation errors. For example, an object that's no longer valid might get used subsequent to the event that caused it to become invalid, or a long-lived object may get discarded without corresponding resources being cleaned up. For more details, check out the [blog post](https://blog.vanillajava.blog/2021/12/unusual-java-stacktrace-extends.html) that provided the implementation for **StackTrace**.