Skip to content

Commit

Permalink
fix: Fix the typo of the function name
Browse files Browse the repository at this point in the history
  • Loading branch information
LeaYeh committed Dec 23, 2023
1 parent 464ee31 commit 53fa16d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion include/debug.h
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: lyeh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/08 18:02:03 by lyeh #+# #+# */
/* Updated: 2023/12/23 19:11:22 by lyeh ### ########.fr */
/* Updated: 2023/12/23 20:10:01 by lyeh ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down
4 changes: 2 additions & 2 deletions source/debug/print_ast_bfs.c
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* print_bfs_ast.c :+: :+: :+: */
/* print_ast_bfs.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: lyeh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/23 18:58:58 by lyeh #+# #+# */
/* Updated: 2023/12/23 19:11:00 by lyeh ### ########.fr */
/* Updated: 2023/12/23 20:07:31 by lyeh ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down
4 changes: 2 additions & 2 deletions source/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
/* By: lyeh <[email protected]> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2023/12/08 16:09:49 by lyeh #+# #+# */
/* Updated: 2023/12/23 18:13:29 by lyeh ### ########.fr */
/* Updated: 2023/12/23 20:10:15 by lyeh ### ########.fr */
/* */
/* ************************************************************************** */

Expand Down Expand Up @@ -39,7 +39,7 @@ int main(int argc, char **argv, char **env)
return (ft_clean_shell(&shell), EXIT_FAILED);
if (!ft_parse(&shell))
return (ft_clean_shell(&shell), EXIT_FAILED);
print_bfs_ast(shell.ast);
print_ast_bfs(shell.ast);
ft_clean_shell(&shell);
// do executor
}
Expand Down

0 comments on commit 53fa16d

Please sign in to comment.