diff options
author | Ben Wiederhake <BenWiederhake.GitHub@gmx.de> | 2023-01-02 15:15:14 +0100 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-01-02 11:06:15 -0500 |
commit | b83cb09db194f0e18ef76f36aea3801959295f22 (patch) | |
tree | 00ccdbb2c1e7766326cc2c3442f3de95cf1c0b8a /Userland/Shell/Builtin.cpp | |
parent | 9d61e59cebbbb1d4fc91d534cceb1316faf44e0b (diff) | |
download | serenity-b83cb09db194f0e18ef76f36aea3801959295f22.zip |
Everywhere: Fix badly-formatted includes
In 7c5e30daaa615ad3a2ef55222423a747ac0a1227, the focus was "only" on
Userland/Libraries/, whereas this commit cleans up the remaining
headers in the repo, and any new badly-formatted include.
Diffstat (limited to 'Userland/Shell/Builtin.cpp')
-rw-r--r-- | Userland/Shell/Builtin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Shell/Builtin.cpp b/Userland/Shell/Builtin.cpp index d49a2f4283..e0315d8ee9 100644 --- a/Userland/Shell/Builtin.cpp +++ b/Userland/Shell/Builtin.cpp @@ -5,8 +5,8 @@ */ #include "AST.h" +#include "Formatter.h" #include "Shell.h" -#include "Shell/Formatter.h" #include <AK/DeprecatedString.h> #include <AK/LexicalPath.h> #include <AK/ScopeGuard.h> |