Skip to content

Commit

Permalink
Changed to 2 space indenting
Browse files Browse the repository at this point in the history
Awesome Jeremy, 
You take time to check this, ..

This is helping me write better code.

Thank you
  • Loading branch information
smjalageri authored and Parker Johansen committed Oct 18, 2020
1 parent 5e289de commit 92e1021
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions archive/p/pascal/capitalize.pas
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
buf: string;
begin
buf := paramStr(1);
if buf = '' then
writeln('Usage: please provide a string')
if buf = '' then
writeln('Usage: please provide a string')
else
buf[1] := UpCase(buf[1]);
writeln(buf);
end.
buf[1] := UpCase(buf[1]);
writeln(buf);
end.

0 comments on commit 92e1021

Please sign in to comment.