Преглед на файлове

fix golint issues in core/lang (#492)

Kevin Wan преди 3 години
родител
ревизия
059027bc9d
променени са 1 файла, в които са добавени 4 реда и са изтрити 1 реда
  1. 4 1
      core/lang/lang.go

+ 4 - 1
core/lang/lang.go

@@ -1,8 +1,11 @@
 package lang
 
+// Placeholder is a placeholder object that can be used globally.
 var Placeholder PlaceholderType
 
 type (
-	GenericType     = interface{}
+	// GenericType can be used to hold any type.
+	GenericType = interface{}
+	// PlaceholderType represents a placeholder type.
 	PlaceholderType = struct{}
 )