Skip to content

Commit

Permalink
fix: Typos
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-touret committed Nov 8, 2024
1 parent feb314e commit 9c60b2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/workshop.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ During this workshop we will cover:
| [Java](https://www.oracle.com/java/) | novice |
| [Maven](https://www.maven.apache.org/) | novice |

### :wrench: Tools
### Tools
#### If you want to execute this workshop locally
You **MUST** have set up these tools first:
* [Java 21+](https://adoptium.net/temurin/releases/?version=21)
Expand Down Expand Up @@ -181,11 +181,11 @@ For example :
/**
*return Coordinates in cartesian coordinate system
*/
public Coordinates getCoordiantes();
public Coordinates getCoordinates();
```
But it is better to use the name of the function to convey the information as much as possible.
```java
public Coordinates getCartesianCoordiantes();
public Coordinates getCartesianCoordinates();
```

#### Warning of Consequences
Expand Down

0 comments on commit 9c60b2b

Please sign in to comment.