Skip to content

Commit

Permalink
Update STYLE_GUIDE.md
Browse files Browse the repository at this point in the history
  • Loading branch information
JonneSaloranta authored Feb 17, 2023
1 parent 392d782 commit 991e63b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions STYLE_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,12 @@ public class MyClass {
* @return The result of the operation.
*/
public int myMethod(int param1, int param2) {
int result = param1 + param2;
if (result > 10) {
result = 10;
}
return result;
}
int result = param1 + param2;
if (result > 10) {
result = 10;
}
return result;
}
}

```
Expand Down

0 comments on commit 991e63b

Please sign in to comment.