Browse Source

Corrected getChannel() documentation.

release/0.19
JustinAJ 10 years ago
parent
commit
f20df2a035
  1. 4
      Jupiter/IRC_Client.h

4
Jupiter/IRC_Client.h

@ -631,7 +631,7 @@ namespace Jupiter
* @brief Returns a channel.
*
* @param index Index of the chanel to return.
* @return The channel at index.
* @return The channel at the specified index.
*/
Channel *getChannel(unsigned int index) const;
@ -639,7 +639,7 @@ namespace Jupiter
* @brief Returns a channel.
*
* @param chanName String containing the name of a channel.
* @return The channel at index.
* @return A channel with the specified name if it exists, nullptr otherwise.
*/
Channel *getChannel(const Jupiter::ReadableString &chanName) const;

Loading…
Cancel
Save