Skip to content

Commit

Permalink
fix!
Browse files Browse the repository at this point in the history
  • Loading branch information
VennDev authored Aug 30, 2024
1 parent 1ebeaa0 commit bfd0993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vennv/vapm/ct/functions.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
*/
function c(callable ...$callbacks): void
{
return CoroutineGen::runNonBlocking(...$callbacks);
CoroutineGen::runNonBlocking(...$callbacks);
}

/**
Expand All @@ -54,7 +54,7 @@ function c(callable ...$callbacks): void
*/
function cBlock(callable ...$callbacks): void
{
return CoroutineGen::runBlocking(...$callbacks);
CoroutineGen::runBlocking(...$callbacks);
}

/**
Expand Down

0 comments on commit bfd0993

Please sign in to comment.