Skip to content

Commit 166ab0c

Browse files
committed
Fixed typos
1 parent 4bd5a01 commit 166ab0c

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

include/callstack.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ bool callstack_emplace(struct callstack * self);
9595
*
9696
* Stores the backtrace of the calling function, ignoring all frames after the given address.
9797
* The callstack object needs to be destructed using the function `callstack_destroy(struct callstack *)`
98-
* upon successfull construction and use.
98+
* upon successful construction and use.
9999
*
100100
* @param self A pointer to the callstack object to be constructed.
101101
* @param address The stack address after which frames are ignored.

src/parser/file/macho/machoFile.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,8 @@ static inline bool machoFile_handleSegment(struct machoFile * self,
216216
*
217217
* @param self the Mach-O file abstraction object
218218
* @param segment the 64 bit segment command to handle
219-
* @param bitsReversed whether to swap the numbers' endianess
220-
* @return whether the handling was successfull
219+
* @param bitsReversed whether to swap the numbers' endianness
220+
* @return whether the handling was successfully
221221
*/
222222
static inline bool machoFile_handleSegment64(struct machoFile * self,
223223
struct segment_command_64 * segment,

0 commit comments

Comments
 (0)