From 2650685cdf36ad0e2d3ca1e4a8582e64ada411f3 Mon Sep 17 00:00:00 2001 From: Chris Oakman Date: Mon, 16 Nov 2020 10:29:13 -0600 Subject: [PATCH] minor - fix typo in Getting Started doc --- docs/Getting Started.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Getting Started.md b/docs/Getting Started.md index fda98333..9882817a 100644 --- a/docs/Getting Started.md +++ b/docs/Getting Started.md @@ -86,7 +86,7 @@ void drawCircle(Canvas c) { // Totally OK, `p` will be freed at the next GC ``` -Only as an additional bonus, all Managed descendants implement AutoClosable. If you want (and only if you want!), you can free short-lived objects immediately after use. This is not mandatory, but might help freeing more memore quicker. +Only as an additional bonus, all Managed descendants implement AutoClosable. If you want (and only if you want!), you can free short-lived objects immediately after use. This is not mandatory, but might help freeing more memory quicker. ```java void drawCircle(Canvas c) {