Skip to content

Commit

Permalink
Minor fixes in Lecture 04 slides
Browse files Browse the repository at this point in the history
  • Loading branch information
100yo committed Nov 2, 2023
1 parent 7fea460 commit 476984e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion 04-collections-clean-code/lecture/slides.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<!DOCTYPE html>
<html>
<head>
<title>[MJT2023] Modern Java Technologies Lecture</title>
<title>[MJT2024] Modern Java Technologies Lecture</title>
<link href="../../web/images/favicon.png" rel="icon" type="image/png"/>
<meta charset="utf-8" />
<meta
Expand Down
2 changes: 1 addition & 1 deletion 04-collections-clean-code/lecture/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,7 @@ public static void main(String... args) {

```java
// Good
private static int readAndValidate(Scanner sc) { // handle input
private static int readInput(Scanner sc) { // handle input
int n = -1;
do {
System.out.println("Въведи число:");
Expand Down

0 comments on commit 476984e

Please sign in to comment.