added indentation

This commit is contained in:
christianbraeunlich 2022-03-19 22:11:52 +01:00
parent 4fbfc28c9e
commit 83053e7287
6 changed files with 22 additions and 24 deletions

View file

@ -13,7 +13,7 @@ Only use begin..end to enclose [compound statements](https://docs.microsoft.com/
```AL
if FindSet() then begin
repeat
...
...
until next() = 0;
end;
```
@ -23,7 +23,7 @@ end;
```AL
if FindSet() then
repeat
...
...
until next() = 0;
```
@ -52,4 +52,3 @@ if X then begin
end else
(not X)
```