[#1] Fix comments and error messages

Signed-off-by: Stanislav Bogatyrev <s.bogatyrev@yadro.com>
This commit is contained in:
Stanislav Bogatyrev 2023-02-05 18:59:38 +03:00 committed by Stanislav Bogatyrev
parent c761a95eef
commit cb016d53a6
96 changed files with 167 additions and 167 deletions

View file

@ -18,7 +18,7 @@ import (
URIAddr strings: "<scheme://>127.0.0.1:8080"
*/
// Address represents the NeoFS node
// Address represents the FrostFS node
// network address.
type Address struct {
ma multiaddr.Multiaddr

View file

@ -8,7 +8,7 @@ import (
accountingsvc "github.com/TrueCloudLab/frostfs-node/pkg/services/accounting"
)
// Server wraps NeoFS API Accounting service and
// Server wraps FrostFS API Accounting service and
// provides gRPC Accounting service server interface.
type Server struct {
srv accountingsvc.Server

View file

@ -8,7 +8,7 @@ import (
containersvc "github.com/TrueCloudLab/frostfs-node/pkg/services/container"
)
// Server wraps NeoFS API Container service and
// Server wraps FrostFS API Container service and
// provides gRPC Container service server interface.
type Server struct {
srv containersvc.Server

View file

@ -8,7 +8,7 @@ import (
netmapsvc "github.com/TrueCloudLab/frostfs-node/pkg/services/netmap"
)
// Server wraps NeoFS API Netmap service and
// Server wraps FrostFS API Netmap service and
// provides gRPC Netmap service server interface.
type Server struct {
srv netmapsvc.Server

View file

@ -11,7 +11,7 @@ import (
"github.com/TrueCloudLab/frostfs-node/pkg/services/util"
)
// Server wraps NeoFS API Object service and
// Server wraps FrostFS API Object service and
// provides gRPC Object service server interface.
type Server struct {
srv objectSvc.ServiceServer

View file

@ -8,7 +8,7 @@ import (
reputationrpc "github.com/TrueCloudLab/frostfs-node/pkg/services/reputation/rpc"
)
// Server wraps NeoFS API v2 Reputation service server
// Server wraps FrostFS API v2 Reputation service server
// and provides gRPC Reputation service server interface.
type Server struct {
srv reputationrpc.Server

View file

@ -8,7 +8,7 @@ import (
sessionsvc "github.com/TrueCloudLab/frostfs-node/pkg/services/session"
)
// Server wraps NeoFS API Session service and
// Server wraps FrostFS API Session service and
// provides gRPC Session service server interface.
type Server struct {
srv sessionsvc.Server