Skip to content

Commit

Permalink
Bug Fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
ravi authored and ravi committed Jan 7, 2022
1 parent cd541a7 commit 9dda368
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/ravi/cal/RaviCalculator/Calculator.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public long subFucn(long first, long second){

public long mulFucn(long first, long second){

return first/second;
return first*second;
}


Expand Down

0 comments on commit 9dda368

Please sign in to comment.