From d08bf5eb68b8c2b06969202d3af6cbdf5c65dd7e Mon Sep 17 00:00:00 2001 From: Polina Cherkasova Date: Fri, 28 Jul 2023 16:12:47 -0700 Subject: [PATCH] Update TROUBLESHOOT.md --- doc/TROUBLESHOOT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/TROUBLESHOOT.md b/doc/TROUBLESHOOT.md index c1a73139..ff40c8dd 100644 --- a/doc/TROUBLESHOOT.md +++ b/doc/TROUBLESHOOT.md @@ -103,7 +103,7 @@ In this example, `disposedD` should stop being reachable from root. Thus you need to find the closest to the root object, that is not needed any more and release reference to it, making the entire chain after available for garbage collection. -Depending on case, the way to release the object will be different: +There are ways to release the reference: 1. If the object is disposed by owner in the owner's dispose, check who holds the owner and release the reference to it: ```