Skip to content

Commit ad6472d

Browse files
committed
style: fix OrderedImports + 2 Spacing findings
- Buffer.Ring+Column.Direct.swift: reordered Store_Ledgered_Primitives before Store_Protocol_Primitives (lexicographic). - Buffer.Ring.Small Tests.swift: 1 ... 16 -> 1...16 (Spacing).
1 parent 8b076ee commit ad6472d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Sources/Buffer Ring Bounded Primitive/Buffer.Ring+Column.Direct.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
//
1010
// ===----------------------------------------------------------------------===//
1111

12-
public import Store_Protocol_Primitives
1312
public import Store_Ledgered_Primitives
13+
public import Store_Protocol_Primitives
1414

1515
// MARK: - Column.Direct (the axis-changing-alias fence, [DS-028])
1616

Tests/Buffer Ring Primitives Tests/Buffer.Ring.Small Tests.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ extension RingSmallCoverageTests {
3232

3333
// FORM-2 enqueue: push 16 `Int`s (128 bytes) past the 64-byte inline budget,
3434
// forcing at least one inline→heap spill during growth.
35-
for value in 1 ... 16 {
35+
for value in 1...16 {
3636
ring.pushBack(value)
3737
}
3838
#expect(ring.count == 16)

0 commit comments

Comments
 (0)