Selaa lähdekoodia

docs: urge the user to listen to the `error` event

Jonas Gloning 1 vuosi sitten
vanhempi
commit
0319432d5d
1 muutettua tiedostoa jossa 5 lisäystä ja 1 poistoa
  1. 5 1
      lib/peer.ts

+ 5 - 1
lib/peer.ts

@@ -495,7 +495,11 @@ export class Peer extends EventEmitterWithError<PeerErrorType, PeerEvents> {
 
 	/**
 	 * Connects to the remote peer specified by id and returns a data connection.
-	 * @param peer The brokering ID of the remote peer (their {@apilink Peer.id}).
+	 *
+	 * Make sure to listen to the `error` event of the resulting {@link DataConnection}
+	 * in case the connection fails.
+	 *
+	 * @param peer The brokering ID of the remote peer (their {@link Peer.id}).
 	 * @param options for specifying details about Peer Connection
 	 */
 	connect(peer: string, options: PeerConnectOption = {}): DataConnection {