Skip to content

Commit

Permalink
Fix small typo (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
mjcarroll authored and sheredom committed Feb 5, 2024
1 parent b65dbc0 commit 9c733b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subprocess.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ subprocess_weak int subprocess_terminate(struct subprocess_s *const process);
///
/// The only safe way to read from the standard output of a process during it's
/// execution is to use the `subprocess_option_enable_async` option in
/// conjuction with this method.
/// conjunction with this method.
subprocess_weak unsigned
subprocess_read_stdout(struct subprocess_s *const process, char *const buffer,
unsigned size);
Expand All @@ -201,7 +201,7 @@ subprocess_read_stdout(struct subprocess_s *const process, char *const buffer,
///
/// The only safe way to read from the standard error of a process during it's
/// execution is to use the `subprocess_option_enable_async` option in
/// conjuction with this method.
/// conjunction with this method.
subprocess_weak unsigned
subprocess_read_stderr(struct subprocess_s *const process, char *const buffer,
unsigned size);
Expand Down

0 comments on commit 9c733b6

Please sign in to comment.