1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-21 23:45:42 +02:00

comparison: copyedit 'delays' to 'delayed'

This is the correct grammatical form for the bullet point, it expands into "Destructors [of objects are] delayed."
This commit is contained in:
Kane York 2022-12-27 14:13:10 -08:00 committed by GitHub
parent c7eff6b85e
commit de7d91752f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,7 +25,7 @@ Here is a rough comparison of the memory management techniques.
* Memory leaks.
* Automatic like Java:
* Garbage collection pauses.
* Destructors delays.
* Destructors delayed.
* Scope-based like C++:
* Complex, opt-in by programmer.
* Potential for use-after-free.