fix(test/char): fixing typo on the error message

This commit is contained in:
Raphael 2025-09-05 10:56:53 +02:00
parent 453b4d3b92
commit 1e717b0743
No known key found for this signature in database
7 changed files with 7 additions and 7 deletions

View file

@ -25,7 +25,7 @@ int main(void)
{
if (ft_isascii(c) != isascii(c))
{
printf("%s✘ Found %i, excepted %i%s\n", CLR_RED, ft_isascii(c),
printf("%s✘ Found %i, expected %i%s\n", CLR_RED, ft_isascii(c),
isascii(c), RESET);
exit(1);
}