Skip to content

Commit 541298a

Browse files
committed
Relicense
1 parent 4684b1c commit 541298a

File tree

6 files changed

+11
-6
lines changed

6 files changed

+11
-6
lines changed

Basis/Applicative.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public protocol Alternative : Applicative {
6060
///
6161
/// The least solution to the equation:
6262
///
63-
/// some(v) <|> FLA.pure([])
63+
/// some(v) <|> pure([])
6464
func many(Self) -> FLA
6565
}
6666

Basis/Stream.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// Basis
44
//
55
// Created by Robert Widmann on 12/22/14.
6-
// Copyright (c) 2014 Robert Widmann. All rights reserved.
6+
// Copyright (c) 2014 TypeLift. All rights reserved.
7+
// Released under the MIT license.
78
//
89

910
/// A lazy infinite sequence of values.

Basis/Trampoline.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// Basis
44
//
55
// Created by Robert Widmann on 12/20/14.
6-
// Copyright (c) 2014 Robert Widmann. All rights reserved.
6+
// Copyright (c) 2014 TypeLift. All rights reserved.
7+
// Released under the MIT license.
78
//
89

910
/// Represents a computation that either produces a value (pure) or branches (suspend). Trampolines

BasisTests/FoldsSpec.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// Basis
44
//
55
// Created by Robert Widmann on 12/22/14.
6-
// Copyright (c) 2014 Robert Widmann. All rights reserved.
6+
// Copyright (c) 2014 TypeLift. All rights reserved.
7+
// Released under the MIT license.
78
//
89

910
import Basis

BasisTests/ListSpec.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// Basis
44
//
55
// Created by Robert Widmann on 12/13/14.
6-
// Copyright (c) 2014 Robert Widmann. All rights reserved.
6+
// Copyright (c) 2014 TypeLift. All rights reserved.
7+
// Released under the MIT license.
78
//
89

910

BasisTests/TrampolineSpec.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
// Basis
44
//
55
// Created by Robert Widmann on 12/21/14.
6-
// Copyright (c) 2014 Robert Widmann. All rights reserved.
6+
// Copyright (c) 2014 TypeLift. All rights reserved.
7+
// Released under the MIT license.
78
//
89

910
import Basis

0 commit comments

Comments
 (0)