Skip to content

Commit

Permalink
Fixed wrong access modifier in UIEdgeInsets+Init
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrommcarrasco committed Apr 7, 2019
1 parent 3bb1fb7 commit d65044a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Sucrose.podspec
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|
s.swift_version = "5.0"
s.name = "Sucrose"
s.version = "3.4.2"
s.version = "3.4.3"
s.summary = "🍬 Everyday sugar"
s.description = "Collection of handy methods & objects"

Expand Down
2 changes: 1 addition & 1 deletion Sucrose/Extensions/UIEdgeInsets+Init.swift
Expand Up @@ -8,7 +8,7 @@

import UIKit

extension UIEdgeInsets {
public extension UIEdgeInsets {

init(_ inset: CGFloat) {
self.init(top: inset, left: inset, bottom: inset, right: inset)
Expand Down

0 comments on commit d65044a

Please sign in to comment.