Skip to content

Commit ec8809e

Browse files
author
Mike Amaral
committed
More cleanup.
1 parent fe0608f commit ec8809e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Source/NeonGroupable.swift

+4-3
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
public protocol Groupable : Frameable {}
1717

1818
public extension Groupable {
19+
1920
/// Tell a view to group an array of its subviews centered, specifying the padding between each subview,
2021
/// as well as the size of each.
2122
///
@@ -218,7 +219,7 @@ public extension Groupable {
218219
///
219220
public func groupAndFill(group group: Group, views: [Frameable], padding: CGFloat) {
220221
if views.count == 0 {
221-
print("[NEON] Warning: No subviews provided to groupAgainstEdge().")
222+
print("[NEON] Warning: No subviews provided to groupAndFill().")
222223
return
223224
}
224225

@@ -325,7 +326,7 @@ public extension Groupable {
325326

326327
private func groupAndAlignHorizontal(align: Align, views: [Frameable], relativeTo sibling: Frameable, padding: CGFloat, width: CGFloat, height: CGFloat) {
327328
if views.count == 0 {
328-
print("[NEON] Warning: No subviews provided to groupAgainstEdge().")
329+
print("[NEON] Warning: No subviews provided to groupAndAlign().")
329330
return
330331
}
331332

@@ -395,7 +396,7 @@ public extension Groupable {
395396

396397
private func groupAndAlignVertical(align: Align, views: [Frameable], relativeTo sibling: Frameable, padding: CGFloat, width: CGFloat, height: CGFloat) {
397398
if views.count == 0 {
398-
print("[NEON] Warning: No subviews provided to groupAgainstEdge().")
399+
print("[NEON] Warning: No subviews provided to groupAndAlign().")
399400
return
400401
}
401402

0 commit comments

Comments
 (0)