Browse Source

Add comments to make golint happy.

Julien Laffaye 10 years ago
parent
commit
5807e676a3
2 changed files with 2 additions and 5 deletions
  1. 1 0
      ftp.go
  2. 1 5
      status.go

+ 1 - 0
ftp.go

@@ -16,6 +16,7 @@ import (
 // EntryType describes the different types of an Entry.
 type EntryType int
 
+// The differents types of an Entry
 const (
 	EntryTypeFile EntryType = iota
 	EntryTypeFolder

+ 1 - 5
status.go

@@ -1,14 +1,13 @@
 package ftp
 
+// FTP status codes, defined in RFC 959
 const (
-	// Positive Preliminary reply
 	StatusInitiating    = 100
 	StatusRestartMarker = 110
 	StatusReadyMinute   = 120
 	StatusAlreadyOpen   = 125
 	StatusAboutToSend   = 150
 
-	// Positive Completion reply
 	StatusCommandOK             = 200
 	StatusCommandNotImplemented = 202
 	StatusSystem                = 211
@@ -29,12 +28,10 @@ const (
 	StatusRequestedFileActionOK = 250
 	StatusPathCreated           = 257
 
-	// Positive Intermediate reply
 	StatusUserOK             = 331
 	StatusLoginNeedAccount   = 332
 	StatusRequestFilePending = 350
 
-	// Transient Negative Completion reply
 	StatusNotAvailable             = 421
 	StatusCanNotOpenDataConnection = 425
 	StatusTransfertAborted         = 426
@@ -44,7 +41,6 @@ const (
 	StatusActionAborted            = 451
 	Status452                      = 452
 
-	// Permanent Negative Completion reply
 	StatusBadCommand              = 500
 	StatusBadArguments            = 501
 	StatusNotImplemented          = 502