Merge pull request #188 from growfrow/master

chore: remove redundant words in comment
This commit is contained in:
tomoko-dev
2025-03-16 19:09:59 -04:00
committed by GitHub
2 changed files with 2 additions and 2 deletions
@@ -122,7 +122,7 @@ func (self *nntpAttachment) Save(dir string) (err error) {
fpath := filepath.Join(dir, self.filepath)
if !CheckFile(fpath) {
var f io.WriteCloser
// does not exist so will will write it
// does not exist so will write it
f, err = os.Create(fpath)
if err == nil {
_, err = f.Write(self.Bytes())
+1 -1
View File
@@ -497,7 +497,7 @@ Connection.prototype.onclose = function(callback) {
/* @brief Initializes the websocket connection.
*
* @param channel The channel to open a connection to.
* @return A connection the the websocket.
* @return A connection the websocket.
*/
function initWebSocket(chat, url, connection) {
var ws = null;