diff --git a/src/memory-management/garbage-collection.md b/src/memory-management/garbage-collection.md index 33c5d1b80322..8902d5507991 100644 --- a/src/memory-management/garbage-collection.md +++ b/src/memory-management/garbage-collection.md @@ -3,7 +3,7 @@ An alternative to manual and scope-based memory management is automatic memory management: -* The programmer never calls allocates or deallocates memory explicitly. +* The programmer never allocates or deallocates memory explicitly. * A garbage collector finds unused memory and deallocates it for the programmer. ## Java Example