File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -85,7 +85,7 @@ let int32Data: UnsafeBufferPointer<Int32> = {
85
85
let untyped = UnsafeMutableRawBufferPointer . allocate (
86
86
byteCount: MemoryLayout < Int32 > . size * count, alignment: 16
87
87
)
88
- // Intialize the memory as Int32 and fill with random values.
88
+ // Initialize the memory as Int32 and fill with random values.
89
89
let typed = untyped. initializeMemory ( as: Int32 . self, repeating: 0 )
90
90
var g = SplitMix64 ( seed: 0 )
91
91
for i in 0 ..< typed. count {
@@ -172,7 +172,7 @@ let int8Data: UnsafeBufferPointer<Int8> = {
172
172
let untyped = UnsafeMutableRawBufferPointer . allocate (
173
173
byteCount: MemoryLayout < Int8 > . size * count, alignment: 16
174
174
)
175
- // Intialize the memory as Int8 and fill with random values.
175
+ // Initialize the memory as Int8 and fill with random values.
176
176
let typed = untyped. initializeMemory ( as: Int8 . self, repeating: 0 )
177
177
var g = SplitMix64 ( seed: 0 )
178
178
for i in 0 ..< typed. count {
You can’t perform that action at this time.
0 commit comments