[#172] Improve the readability of named attribute constants
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
5494d3417f
commit
ad0b01e892
4 changed files with 20 additions and 20 deletions
|
@ -1,15 +1,15 @@
|
|||
package object
|
||||
|
||||
const (
|
||||
// AttrName is an attribute key that is commonly used to denote
|
||||
// AttributeName is an attribute key that is commonly used to denote
|
||||
// human-friendly name.
|
||||
AttrName = "Name"
|
||||
AttributeName = "Name"
|
||||
|
||||
// AttrFileName is an attribute key that is commonly used to denote
|
||||
// AttributeFileName is an attribute key that is commonly used to denote
|
||||
// file name to be associated with the object on saving.
|
||||
AttrFileName = "FileName"
|
||||
AttributeFileName = "FileName"
|
||||
|
||||
// AttrTimestamp is an attribute key that is commonly used to denote
|
||||
// AttributeTimestamp is an attribute key that is commonly used to denote
|
||||
// user-defined local time of object creation in Unix Timestamp format.
|
||||
AttrTimestamp = "Timestamp"
|
||||
AttributeTimestamp = "Timestamp"
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue