Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix typo doOp -> DoOp #2096

Merged
merged 1 commit into from
Jul 20, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions subjects/java/piscine/DoOp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Write a function `operate` that returns the result of the given arithmetic opera
### Expected Functions

```java
public class doOp {
public class DoOp {
public static String operate(String[] args) {
// your code here
}
Expand All @@ -27,10 +27,10 @@ Here is a possible ExerciseRunner.java to test your function :
```java
public class ExerciseRunner {
public static void main(String[] args) {
System.out.println(doOp.operate(new String[]{"1","+","2"}));
System.out.println(doOp.operate(new String[]{"1","-","1"}));
System.out.println(doOp.operate(new String[]{"1","%","0"}));
System.out.println(doOp.operate(args));
System.out.println(DoOp.operate(new String[]{"1","+","2"}));
System.out.println(DoOp.operate(new String[]{"1","-","1"}));
System.out.println(DoOp.operate(new String[]{"1","%","0"}));
System.out.println(DoOp.operate(args));
}
}
```
Expand Down
Loading