Skip to content

Commit 29da39a

Browse files
fix(build/docs): last release didn't deploy docs/coverage, so try again
1 parent 1610541 commit 29da39a

2 files changed

Lines changed: 3 additions & 4 deletions

File tree

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ jobs:
2222
skip_cleanup: true
2323
script: npm run semantic-release
2424
after_deploy:
25-
- npm run travis-deploy-once "npm run report-coverage"
26-
- npm run travis-deploy-once "npm run deploy-docs"
25+
- npm run report-coverage
26+
- npm run deploy-docs

src/tagged-union.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ import { TaggedUnionMember, Exact } from 'typelevel-ts'
22
import { TAG, Unit } from './internal'
33

44
/**
5-
* @name Def<Tag extends string, Value = Tag>
65
* Utility for defining variants of tagged sum types
76
*
87
* @param Tag a string literal type used to name/tag the variant being defined
@@ -25,7 +24,7 @@ import { TAG, Unit } from './internal'
2524
*
2625
* ```ts
2726
* type Maybe<A> =
28-
* | { tag: 'Nothing', Nothing: 'Nothing' }
27+
* | { tag: 'Nothing', Nothing: Unit }
2928
* | { tag: 'Just', Just: A }
3029
*
3130
* ```

0 commit comments

Comments
 (0)