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: Typos #9

Merged
merged 2 commits into from
Nov 8, 2024
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
16 changes: 11 additions & 5 deletions docs/workshop.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,23 @@ During this workshop we will cover:
* Log management
* GIT (conventional commits)

## Prerequisites

### Getting involved?

The source code is available on [GitHub](https://github.com/worldline/code-quality-workshop/).

Feel free to raise any issues or participate!

## Prerequisites

### :mortar_board: Skills
### Skills

| Skill | Level |
|----------------------------------------|---|
| [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 +187,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
Loading