Skip to content

Commit

Permalink
chore(doc): Fixing package doc (fclairamb#229)
Browse files Browse the repository at this point in the history
Co-authored-by: probot-auto-merge[bot] <41167595+probot-auto-merge[bot]@users.noreply.github.com>
  • Loading branch information
fclairamb and probot-auto-merge[bot] authored Feb 7, 2021
1 parent 9295091 commit 4b57a32
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 20 deletions.
3 changes: 1 addition & 2 deletions asciiconverter.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import (
"bufio"
Expand Down
3 changes: 1 addition & 2 deletions client_handler.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import (
"bufio"
Expand Down
3 changes: 1 addition & 2 deletions consts.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

// from @stevenh's PR proposal
// https://github.com/fclairamb/ftpserverlib/blob/becc125a0770e3b670c4ced7e7bd12594fb024ff/server/consts.go
Expand Down
3 changes: 1 addition & 2 deletions driver.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import (
"crypto/tls"
Expand Down
3 changes: 1 addition & 2 deletions handle_auth.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import "fmt"

Expand Down
3 changes: 1 addition & 2 deletions handle_dirs.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import (
"fmt"
Expand Down
3 changes: 1 addition & 2 deletions handle_files.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import (
"crypto/md5" //nolint:gosec
Expand Down
3 changes: 1 addition & 2 deletions handle_misc.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import (
"bufio"
Expand Down
3 changes: 1 addition & 2 deletions transfer_active.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import (
"crypto/tls"
Expand Down
3 changes: 1 addition & 2 deletions transfer_pasv.go
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
// Package ftpserver provides all the tools to build your own FTP server: The core library and the driver.
package ftpserver
package ftpserver // nolint

import (
"crypto/tls"
Expand Down

0 comments on commit 4b57a32

Please sign in to comment.