From e9fdcd18b5ebc9ae481cf5d8719754f0dedb7931 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hamza=20Co=C5=9Fkun?= <36128276+hamza-cskn@users.noreply.github.com> Date: Sun, 7 Apr 2024 20:41:45 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index da9a45e..87b898d 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ Bash also allows users to create shell scripts that contain a sequence of comman These basic steps of Bash provide a user-friendly command-line environment and come with a wide range of commands. Users can customize Bash and there is extensive documentation and community support. ## How does this Minishell work? -Essentially bash breaks down the process into 4 steps: +Essentially we breaks down the process into 4 steps: * `lexer` accepts the raw string input of the user and converts it to tokens. * `expander` accepts a list of tokens and replaces placeholders with its values. * `parser` accepts a list of tokens and converts them to commands.