|
39 | 39 | +-----------------+--------+
|
40 | 40 | | lpStartEncoding | (char) |
|
41 | 41 | +---------+-------+--------+---------------+-----------------------+
|
42 |
| -| lpStart | (encoded wtih lpStartEncoding) | defaults to funcStart | |
| 42 | +| lpStart | (encoded with lpStartEncoding) | defaults to funcStart | |
43 | 43 | +---------+-----+--------+-----------------+---------------+-------+
|
44 | 44 | | ttypeEncoding | (char) | Encoding of the type_info table |
|
45 | 45 | +---------------+-+------+----+----------------------------+----------------+
|
@@ -187,7 +187,7 @@ readULEB128(const uint8_t** data)
|
187 | 187 | }
|
188 | 188 |
|
189 | 189 | /// Read a sleb128 encoded value and advance pointer
|
190 |
| -/// See Variable Length Data Applendix C in: |
| 190 | +/// See Variable Length Data Appendix C in: |
191 | 191 | /// @link http://dwarfstd.org/Dwarf4.pdf @unlink
|
192 | 192 | /// @param data reference variable holding memory pointer to decode from
|
193 | 193 | /// @returns decoded value
|
@@ -344,7 +344,7 @@ get_shim_type_info(uint64_t ttypeIndex, const uint8_t* classInfo,
|
344 | 344 | }
|
345 | 345 |
|
346 | 346 | /*
|
347 |
| - This is checking a thrown exception type, excpType, against a posibly empty |
| 347 | + This is checking a thrown exception type, excpType, against a possibly empty |
348 | 348 | list of catchType's which make up an exception spec.
|
349 | 349 |
|
350 | 350 | An exception spec acts like a catch handler, but in reverse. This "catch
|
@@ -489,7 +489,7 @@ scan_eh_tab(scan_results& results, _Unwind_Action actions, bool native_exception
|
489 | 489 | return;
|
490 | 490 | }
|
491 | 491 | }
|
492 |
| - else // Niether _UA_SEARCH_PHASE nor _UA_CLEANUP_PHASE is set |
| 492 | + else // Neither _UA_SEARCH_PHASE nor _UA_CLEANUP_PHASE is set |
493 | 493 | {
|
494 | 494 | // One of these should be set.
|
495 | 495 | // Client error
|
@@ -1038,7 +1038,7 @@ __cxa_call_unexpected(void* arg)
|
1038 | 1038 | {
|
1039 | 1039 | // We need to __cxa_end_catch for both the old exception and the
|
1040 | 1040 | // new exception. Technically we should do it in that order.
|
1041 |
| - // But it is expedent to do it in the opposite order: |
| 1041 | + // But it is expedient to do it in the opposite order: |
1042 | 1042 | // Call __cxa_end_catch for new_exception_header
|
1043 | 1043 | __cxa_end_catch();
|
1044 | 1044 | // Throw std::bad_exception will __cxa_end_catch for
|
|
0 commit comments