Fix Artur's comments

This commit is contained in:
Aliona 2019-05-20 20:18:01 +03:00
parent cdc9668b1a
commit b2016fa157
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
//
// Copyright (c) 2017 Touch Instinct
// Copyright (c) 2019 Touch Instinct
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
@ -29,7 +29,7 @@ protocol Initializable {
extension Initializable {
static func instanceArray(count: Int) -> [Self] {
static func instantiateArray(count: Int) -> [Self] {
var array: [Self] = []
(0..<count).forEach { _ in
array.append(Self())