Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions components/cqrs/name.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
)

// FullyQualifiedStructName name returns object name in format [package].[type name].
// FullyQualifiedStructName returns object name in format [package].[type name].
// For example, for the struct:
//
// package events
Expand All @@ -21,7 +21,7 @@ func FullyQualifiedStructName(v interface{}) string {
return s
}

// StructName name returns struct name in format [type name].
// StructName returns struct name in format [type name].
// For example, for the struct:
//
// package events
Expand Down