Skip to content

Commit b470cfb

Browse files
docs: update docs
1 parent bf0ff92 commit b470cfb

File tree

2 files changed

+8
-9
lines changed

2 files changed

+8
-9
lines changed

Playground/AlexandrAnatoliev/CookingMeasurementConverter-Java-AlexandrAnatoliev/README.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
# Cooking Measures Converter
1+
# Cooking Measurement Converter
22
Simple utility to convert between common cooking measurements.
33

44
> **Author:** Alexandr Anatoliev
5+
56
> **GitHub:** [AlexandrAnatoliev](https://github.com/AlexandrAnatoliev)
67
78
---
@@ -53,9 +54,9 @@ java Converter <arguments>
5354
java -cp bin Converter <arguments>
5455
```
5556
* Input format:
56-
- [value] Value of user's product
57-
- [from units] Units need to convert from
58-
- [to units] Units need to convert to
57+
- [value] The quantity to convert
58+
- [from units] Source measurement unit (ml, cup, tbsp, tsp)
59+
- [to units] Target measurement unit (ml, cup, tbsp, tsp)
5960
```
6061
[value] [from units] [to units]
6162
```
@@ -67,10 +68,7 @@ java -cp bin Converter <arguments>
6768
java -cp bin/ Converter 1 cup tbsp
6869
1 cup = 16 tbsp
6970
```
70-
```
71-
bin$ java TZConverter Moscow
72-
The time in Moscow is 22:06:56 on 28.11.2025 and its time zone is Europe/Moscow
73-
```
71+
7472
```
7573
java -cp bin/ Converter invalid input arguments
7674
@@ -91,3 +89,4 @@ java -cp bin/ Converter 1 cup tbsp
9189

9290
## Requirements
9391
* Java 8 or higher
92+
* Terminal/console that supports ANSI colors codes

Playground/AlexandrAnatoliev/CookingMeasurementConverter-Java-AlexandrAnatoliev/src/Converter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Cooking Measures Converter
2+
* Cooking Measurement Converter
33
*
44
* Simple utility to convert between common cooking measurements
55
*

0 commit comments

Comments
 (0)