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..