From b2016fa157fb1efee1fbe67d94b972edc3499e4a Mon Sep 17 00:00:00 2001 From: Aliona Date: Mon, 20 May 2019 20:18:01 +0300 Subject: [PATCH] Fix Artur's comments --- Sources/Protocols/Initializable.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Protocols/Initializable.swift b/Sources/Protocols/Initializable.swift index af7020ce..a0d1495f 100644 --- a/Sources/Protocols/Initializable.swift +++ b/Sources/Protocols/Initializable.swift @@ -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..