Skip to content

Commit

Permalink
minor typography fix
Browse files Browse the repository at this point in the history
  • Loading branch information
linsolas committed May 28, 2023
1 parent 44d8008 commit 058a6ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/content/learn/separating-events-from-effects.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,10 @@ export function createConnection(serverUrl, roomId) {
// Une véritable implémentation se connecterait en vrai au serveur
return {
connect() {
console.log('✅ Connexion au salon "' + roomId + '" depuis ' + serverUrl + '...');
console.log('✅ Connexion au salon « ' + roomId + ' » depuis ' + serverUrl + '...');
},
disconnect() {
console.log('❌ Déconnexion du salon "' + roomId + '" depuis ' + serverUrl);
console.log('❌ Déconnexion du salon « ' + roomId + ' » depuis ' + serverUrl);
}
};
}
Expand Down

0 comments on commit 058a6ac

Please sign in to comment.