Skip to content

Commit 9025013

Browse files
committed
fixup: rewording
Signed-off-by: Florian Lehner <[email protected]>
1 parent ee8050c commit 9025013

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

rust-crates/symblib-capi/c/symblib.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -141,24 +141,24 @@ extern void symblib_retpadextr_free(SymblibRetPadExtractor* extr);
141141
// Opaque handle to SymblibPointResolver.
142142
typedef struct SymblibPointResolver SymblibPointResolver;
143143

144-
// Create a new SymblibPointResolver handler from a Go executable.
144+
// Creates a new SymblibPointResolver.
145145
extern SymblibStatus symblib_goruntime_new(
146146
const char* executable,
147147
SymblibPointResolver** runtime // out arg
148148
);
149149

150-
// Frees a Go based SymblibPointResolver
150+
// Frees a SymblibPointResolver.
151151
extern void symblib_goruntime_free(SymblibPointResolver* runtime);
152152

153-
// Hold information about a symbol and its origin.
153+
// Contains information about a symbol and its origin.
154154
typedef struct SymblibResolvedSymbol {
155155
uint64_t start_addr;
156156
SymblibString function_name;
157157
SymblibString file_name;
158158
uint32_t line_number;
159159
} SymblibResolvedSymbol;
160160

161-
// Enveloping struct that holds len number of symbols in data.
161+
// Enveloping struct that contains len number of symbols in data.
162162
typedef struct SymblibSlice_SymblibResolvedSymbol {
163163
const SymblibResolvedSymbol* data;
164164
size_t len;

0 commit comments

Comments
 (0)