From c4cd464bfadc3019d1238b4dc7a231af49c85a61 Mon Sep 17 00:00:00 2001 From: Julian Lechner Date: Mon, 24 Aug 2026 15:27:05 +0200 Subject: [PATCH] docs(api): clarify setter behavior --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fa9c223..24323c3 100644 --- a/README.md +++ b/README.md @@ -139,8 +139,8 @@ type AudioManagerOptions = { | Method | Description | | ------------------------ | ---------------------------------------------------------------------------------- | -| `setConnection(options)` | Replaces the voice connection target. | -| `setSource(source)` | Replaces the audio source. | +| `setConnection(options)` | Sets the target for the next `connect()` or `start()` call. | +| `setSource(source)` | Sets the source for the next `play()` or `start()` call. | | `connect()` | Joins the configured Discord voice channel. | | `play(source?)` | Starts playback on an existing connection. | | `start()` | Connects and starts playback. |