Skip to content

Commit

Permalink
Fix typos and formatting in Lab 02 assignment
Browse files Browse the repository at this point in the history
  • Loading branch information
100yo committed Oct 19, 2024
1 parent cb2b546 commit afb364d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion 02-oop-in-java-i/lab/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package bg.sofia.uni.fmi.mjt.gameplatform.store.item;
import java.math.BigDecimal;
import java.time.LocalDateTime;

public interface `StoreItem` {
public interface StoreItem {

/**
* Returns the title of the store item.
Expand Down Expand Up @@ -196,6 +196,7 @@ public interface StoreAPI {
### Подсказка

👉 За работа с дати и часове, може да използвате [`java.time`](https://docs.oracle.com/en/java/javase/23/docs/api/java.base/java/time/package-summary.html) API, обръщайки по-специално внимание на [`LocalDateTime`](https://docs.oracle.com/en/java/javase/23/docs/api/java.base/java/time/LocalDateTime.html) класа и неговите методи.

👉 Цените представяме с референтния тип [`java.math.BigDecimal`](https://docs.oracle.com/en/java/javase/23/docs/api/java.base/java/math/BigDecimal.html), разгледайте и неговата документация.

### :warning: Промокод
Expand Down

0 comments on commit afb364d

Please sign in to comment.