Skip to content

Commit 1a6f0e9

Browse files
committed
AudioServer comments
1 parent 61b3b36 commit 1a6f0e9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/AudioTools/CoreAudio/AudioHttp/AudioServer.h

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ template<class Client,class Server>
3636
class AudioServerT {
3737
public:
3838
/**
39-
* @brief Construct a new Audio W A V Server object
39+
* @brief Construct a new Audio Server object
4040
* We assume that the WiFi is already connected
4141
*/
4242
AudioServerT(int port = 80) {
@@ -46,7 +46,7 @@ class AudioServerT {
4646
}
4747

4848
/**
49-
* @brief Construct a new Audio W A V Server object
49+
* @brief Construct a new Audio WAV Server object
5050
*
5151
* @param network
5252
* @param password
@@ -299,15 +299,15 @@ using AudioServerEthernet = AudioServerT<EthernetClient, EthernetServer>;
299299
class AudioEncoderServer : public AudioServer {
300300
public:
301301
/**
302-
* @brief Construct a new Audio W A V Server object
302+
* @brief Construct a new Audio Server object that supports an AudioEncoder
303303
* We assume that the WiFi is already connected
304304
*/
305305
AudioEncoderServer(AudioEncoder *encoder, int port = 80) : AudioServer(port) {
306306
this->encoder = encoder;
307307
}
308308

309309
/**
310-
* @brief Construct a new Audio W A V Server object
310+
* @brief Construct a new Audio Server object
311311
*
312312
* @param network
313313
* @param password
@@ -470,13 +470,13 @@ class AudioEncoderServer : public AudioServer {
470470
class AudioWAVServer : public AudioEncoderServer {
471471
public:
472472
/**
473-
* @brief Construct a new Audio W A V Server object
473+
* @brief Construct a new Audio WAV Server object
474474
* We assume that the WiFi is already connected
475475
*/
476476
AudioWAVServer(int port = 80) : AudioEncoderServer(new WAVEncoder(), port) {}
477477

478478
/**
479-
* @brief Construct a new Audio W A V Server object
479+
* @brief Construct a new Audio WAV Server object
480480
*
481481
* @param network
482482
* @param password

0 commit comments

Comments
 (0)