Skip to content

Commit

Permalink
update enum type
Browse files Browse the repository at this point in the history
  • Loading branch information
tanner0101 committed Jan 27, 2016
1 parent a4c2967 commit e9fb34f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Sources/Session.swift
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ protocol SessionDriver {

public class Session {

public enum Type {
public enum DriverType {
case File, Memory
}
public static var type: Type = .Memory {
public static var type: DriverType = .Memory {
didSet {
switch self.type {
case .Memory:
Expand Down

0 comments on commit e9fb34f

Please sign in to comment.