renamed PseudoRandom to Pseudorandom

This commit is contained in:
Gani Georgiev
2022-11-06 15:28:41 +02:00
parent 4cddb6b5cb
commit 0ff5606d80
9 changed files with 19 additions and 19 deletions
+1 -1
View File
@@ -113,7 +113,7 @@ func (s *Schema) RemoveField(id string) {
func (s *Schema) AddField(newField *SchemaField) {
if newField.Id == "" {
// set default id
newField.Id = strings.ToLower(security.PseudoRandomString(8))
newField.Id = strings.ToLower(security.PseudorandomString(8))
}
for i, field := range s.fields {