1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2024-12-27 03:31:57 +02:00

Merge pull request #61 from pdecat/patch-1

Remove misplaced "calls"
This commit is contained in:
Martin Geisler 2022-12-27 16:40:08 +01:00 committed by GitHub
commit bc37d48cb0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,7 +3,7 @@
An alternative to manual and scope-based memory management is automatic memory An alternative to manual and scope-based memory management is automatic memory
management: 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. * A garbage collector finds unused memory and deallocates it for the programmer.
## Java Example ## Java Example