Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
Co-authored-by: Teodosi Tashev <[email protected]>
  • Loading branch information
100yo and teodositashev committed Jul 19, 2024
1 parent bbaec21 commit e346e6d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 03-oop-in-java-ii/lecture/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ public void writeList() throws IOException, FileNotFoundException {
* @throws IllegalArgumentException if fn is null, empty or blank,
* or a student with the specified fn is not found
* @throws IOException if the student cannot be loaded due to some I/O problem
* @return Student the loaded student
* @return Student the student
*/
public Student loadStudent(String fn) throws IOException {
// [...]
Expand Down
2 changes: 1 addition & 1 deletion 05-generics/lecture/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ areEqual = Util.areEqual(p1, p2);

### Ковариантност, контравариантност и инвариантност

- Например, в Java масивите за ковариантни. Това има две следствия:
- Например, в Java масивите са ковариантни. Това има две следствия:
- `T[]` може да съдържа елементи от тип `T` и негови наследници
- `S[]` е наследник на `T[]`, ако `S` е наследник на `T`

Expand Down
2 changes: 1 addition & 1 deletion 10-network/lecture/slides.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void execute(Runnable command)
<T> Future<T> submit(Callable<T> task)

// java.util.concurrent.ScheduledExecutorService
// Задачите могат да се пускат след опредено закъснение
// Задачите могат да се пускат след определено закъснение
// или периодично на зададен интервал

ScheduledFuture<?> schedule(Runnable r, long delay, TimeUnit tu)
Expand Down

0 comments on commit e346e6d

Please sign in to comment.