diff --git a/ast__eval_8h_source.html b/ast__eval_8h_source.html
index e8aeb7fd..c506ba72 100644
--- a/ast__eval_8h_source.html
+++ b/ast__eval_8h_source.html
@@ -111,15 +111,15 @@
Represent a node of the AST.
void free_variables()
Use for Free Hash Map Variables at the end of the program.
Definition: ast_variable.c:52
-int until_loop(struct ast_node *node)
Evaluate the until loop.
Definition: loop.c:30
+int until_loop(struct ast_node *node)
Evaluate the until loop.
Definition: loop.c:31
char * handle_word(struct ast_node *node)
Handle word assignment.
Definition: ast_variable.c:134
int redir_manager(struct ast_node *ast, int *save_fd, int *fd_dup)
Definition: redirections.c:141
int match_ast(struct ast_node *node)
Evaluate the given AST.
Definition: ast_eval.c:180
int ast_and_or(struct ast_node *node)
Evaluate and_or.
Definition: pipeline.c:76
int pipeline_eval(struct ast_node *node)
Pipeline evaluation.
Definition: pipeline.c:17
-int while_loop(struct ast_node *node)
Evaluate the while loop.
Definition: loop.c:20
+int while_loop(struct ast_node *node)
Evaluate the while loop.
Definition: loop.c:21
int ast_command(struct ast_node *node)
Evaluate command from ast.
Definition: ast_eval.c:87
-int for_loop(struct ast_node *node)
Evaluate the for loop.
Definition: loop.c:158
+int for_loop(struct ast_node *node)
Evaluate the for loop.
Definition: loop.c:138
void set_variable(char *key, char *value)
Set variable.
Definition: ast_variable.c:63
int ast_eval_assignment(struct ast_node *node)
Evaluate the ast assignement.
Definition: ast_variable.c:116
Header for options functions.
diff --git a/globals_func_i.html b/globals_func_i.html
index d2dd280d..9d6ea38b 100644
--- a/globals_func_i.html
+++ b/globals_func_i.html
@@ -87,7 +87,7 @@ - i -
, options.h
- isDirectory()
-: loop.c
+: loop.c
- isValidPattern()
: loop.c
diff --git a/globals_i.html b/globals_i.html
index e6fbcb3d..9e002ad2 100644
--- a/globals_i.html
+++ b/globals_i.html
@@ -87,7 +87,7 @@
- i -
- isDirectory()
-: loop.c
+: loop.c
- isValidPattern()
: loop.c
diff --git a/loop_8c.html b/loop_8c.html
index 73c1ad25..6d18a048 100644
--- a/loop_8c.html
+++ b/loop_8c.html
@@ -81,6 +81,7 @@
#include <sys/stat.h>
#include <sys/types.h>
#include <unistd.h>
+#include <err.h>
#include "ast/ast.h"
#include "ast_eval.h"
#include "options/options.h"
@@ -89,13 +90,14 @@