Fix typo in lesson 1
Some checks failed
deploy / test (push) Has been cancelled

fixes #4
This commit is contained in:
nora 2026-01-10 21:57:45 +01:00 committed by GitHub
parent 4c02c9f137
commit a853814581
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -31,7 +31,7 @@
Every C++ mangled symbol is prefixed with the string
<code>_Z</code>. This signifies that this is a mangled C++ symbol.
<code>_Z</code> starts with an underscore followed by an uppercase
letter. All symbols of that structures are reserved by the C
letter. All symbols of that structure are reserved by the C
standard and cannot be used by programs. This ensures that there are
no name collisions with normal C functions and mangled C++
functions.