Skip to content

Commit 783aec2

Browse files
authored
Fix a few comment typos in the codebase (#906)
`suceeded` -> `succeeded`
1 parent 207172d commit 783aec2

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

include/llbuild/Basic/Subprocess.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ namespace llbuild {
213213
/// \param ctx - Opaque context passed on to the delegate
214214
/// \param handle - The handle used to identify the process. This handle
215215
/// will become invalid as soon as the client returns from this API call.
216-
/// \param result - Whether the process suceeded, failed or was cancelled.
216+
/// \param result - Whether the process succeeded, failed or was cancelled.
217217
//
218218
// FIXME: Need to include additional information on the status here, e.g., the
219219
// signal status, and the process output (if buffering).

include/llbuild/BuildSystem/BuildSystemFrontend.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ class BuildSystemFrontendDelegate : public BuildSystemDelegate {
281281
/// \param handle - The handle used to identify the process. This handle will
282282
/// become invalid as soon as the client returns from this API call.
283283
///
284-
/// \param result - Whether the process suceeded, failed or was cancelled.
284+
/// \param result - Whether the process succeeded, failed or was cancelled.
285285
//
286286
// FIXME: Need to include additional information on the status here, e.g., the
287287
// signal status, and the process output (if buffering).

products/libllbuild/include/llbuild/buildsystem.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ typedef struct llb_buildsystem_delegate_t_ {
494494
/// Xparam process The handle used to identify the process. This handle
495495
/// will become invalid as soon as the client returns from this API call.
496496
///
497-
/// Xparam result Whether the process suceeded, failed or was cancelled.
497+
/// Xparam result Whether the process succeeded, failed or was cancelled.
498498
/// Xparam exitStatus The raw exit status of the process.
499499
void (*command_process_finished)(void* context,
500500
llb_buildsystem_command_t* command,

products/llbuildSwift/BuildSystemBindings.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public protocol ProcessDelegate {
5252

5353
/// Called when a command's job has finished executing an external process.
5454
///
55-
/// - result: Whether the process suceeded, failed or was cancelled.
55+
/// - result: Whether the process succeeded, failed or was cancelled.
5656
func processFinished(result: CommandExtendedResult)
5757
}
5858

@@ -910,7 +910,7 @@ public protocol BuildSystemDelegate {
910910
/// handle will become invalid as soon as the client returns from this API
911911
/// call.
912912
///
913-
/// - parameter result: Whether the process suceeded, failed or was cancelled.
913+
/// - parameter result: Whether the process succeeded, failed or was cancelled.
914914
/// - parameter exitStatus: The raw exit status of the process.
915915
func commandProcessFinished(_ command: Command, process: ProcessHandle, result: CommandExtendedResult)
916916

0 commit comments

Comments
 (0)