docs: updates to several patterns

This commit is contained in:
Ilkka Seppälä
2024-05-28 19:46:39 +03:00
parent 4652842c94
commit 584e949714
70 changed files with 347 additions and 479 deletions
+2 -2
View File
@@ -88,7 +88,7 @@ public class App {
}
```
The LoginHandler is responsible for handling login requests. When a user logs in, a session identifier is created and stored for future requests in a list.
The `LoginHandler` is responsible for handling login requests. When a user logs in, a session identifier is created and stored for future requests in a list.
```java
public class LoginHandler {
@@ -107,7 +107,7 @@ public class LoginHandler {
}
```
The LogoutHandler is responsible for handling logout requests. When a user logs out, the session identifier is deleted from the list along with the appropriate user session data.
The `LogoutHandler` is responsible for handling logout requests. When a user logs out, the session identifier is deleted from the list along with the appropriate user session data.
```java
public class LogoutHandler {