diff options
author | Emanuele Torre <torreemanuele6@gmail.com> | 2021-03-08 00:19:37 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-03-08 09:20:53 +0100 |
commit | 1f81bc6879908ea431d16c753b39e3ba13f2f105 (patch) | |
tree | 94a1ced275f4f576e56801021c5666f442e75aad /Base/home | |
parent | 6749ba3477255054b901fe8ac3f094b38a7622b6 (diff) | |
download | serenity-1f81bc6879908ea431d16c753b39e3ba13f2f105.zip |
Everywhere: Remove unnecessary whitespace at the end of some lines.
Diffstat (limited to 'Base/home')
-rw-r--r-- | Base/home/anon/Source/js/simple-scopes.js | 2 | ||||
-rw-r--r-- | Base/home/anon/Source/little/Makefile | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Base/home/anon/Source/js/simple-scopes.js b/Base/home/anon/Source/js/simple-scopes.js index 14e6c35e75..246a7c4412 100644 --- a/Base/home/anon/Source/js/simple-scopes.js +++ b/Base/home/anon/Source/js/simple-scopes.js @@ -3,7 +3,7 @@ function foo() { function bar() { var y = 6; } - + bar(); return y; } diff --git a/Base/home/anon/Source/little/Makefile b/Base/home/anon/Source/little/Makefile index cbf60c9ce3..44076a9960 100644 --- a/Base/home/anon/Source/little/Makefile +++ b/Base/home/anon/Source/little/Makefile @@ -8,7 +8,7 @@ $(PROGRAM): $(OBJS) $(CXX) -o $@ $(OBJS) %.o: %.cpp - $(CXX) $(CXXFLAGS) -o $@ -c $< + $(CXX) $(CXXFLAGS) -o $@ -c $< clean: rm $(OBJS) $(PROGRAM) |