File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -209,7 +209,7 @@ mod write {
209
209
*
210
210
* There are a few issues to handle:
211
211
*
212
- * - Linkers operate on a flat namespace, so we have to flatten names.
212
+ * - Linnkers operate on a flat namespace, so we have to flatten names.
213
213
* We do this using the C++ namespace-mangling technique. Foo::bar
214
214
* symbols and such.
215
215
*
@@ -221,15 +221,15 @@ mod write {
221
221
* symbols in the same process before you're even hitting birthday-paradox
222
222
* collision probability.
223
223
*
224
- * - Symbols in dirrerent crates but with same names "within" the crate need
224
+ * - Symbols in different crates but with same names "within" the crate need
225
225
* to get different linkage-names.
226
226
*
227
227
* So here is what we do:
228
228
*
229
229
* - Separate the meta tags into two sets: exported and local. Only work with
230
230
* the exported ones when considering linkage.
231
231
*
232
- * - Consider two exported tags as special (and madatory ): name and vers.
232
+ * - Consider two exported tags as special (and mandatory ): name and vers.
233
233
* Every crate gets them; if it doesn't name them explicitly we infer them
234
234
* as basename(crate) and "0.1", respectively. Call these CNAME, CVERS.
235
235
*
You can’t perform that action at this time.
0 commit comments