Skip to content

Commit

Permalink
minor - fix typo in Getting Started doc
Browse files Browse the repository at this point in the history
  • Loading branch information
oakmac authored and tonsky committed Nov 16, 2020
1 parent fa81536 commit 2650685
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Getting Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 2650685

Please sign in to comment.