shao пре 1 недеља
родитељ
комит
b681056004
1 измењених фајлова са 2 додато и 2 уклоњено
  1. 2 2
      common/enum.go

+ 2 - 2
common/enum.go

@@ -34,7 +34,7 @@ func AllLanguages() []Lang {
 type Source string
 
 const (
-	SOURCE_ELECTRON Source = "ELectron"
+	SOURCE_ELECTRON Source = "Electron"
 	SOURCE_BROWSER  Source = "Browser"
 	SOURCE_ANDROID  Source = "Android"
 	SOURCE_DEV      Source = "Dev"
@@ -43,7 +43,7 @@ const (
 func (p Source) ToString() string {
 	switch p {
 	case SOURCE_ELECTRON:
-		return "ELectron"
+		return "Electron"
 	case SOURCE_BROWSER:
 		return "Browser"
 	case SOURCE_ANDROID: