Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #73

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix typo
bersbersbers authored Nov 6, 2024
commit 2826a66fb528554e885c08ac6929de396c621ece
2 changes: 1 addition & 1 deletion docs/draft.html
Original file line number Diff line number Diff line change
@@ -802,7 +802,7 @@ <h3 data-number="1.5.1" id="lifetime-safety"><span class="header-section-number"
two mainstream lifetime safety technologies: garbage collection and
borrow checking. Garbage collection is simple to implement and use, but
moves object allocations to the heap, making it incompatible with manual
memory manegement. It keeps objects initialized as long as there are
memory management. It keeps objects initialized as long as there are
live references to them, making it incompatible with C++’s RAII<span class="citation" data-cites="raii">[<a href="https://en.wikipedia.org/wiki/Resource_acquisition_is_initialization" role="doc-biblioref">raii</a>]</span> object model.</p>
<p>Borrow checking is an advanced form of live analysis. It keeps track
of the <em>live references</em> at every point in the function, and