Skip to content

Commit

Permalink
Update documentation links
Browse files Browse the repository at this point in the history
[skip ci]

Fixes #1008
  • Loading branch information
mxcl committed Feb 5, 2019
1 parent 62dd9b2 commit 716f9c2
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 16 deletions.
8 changes: 0 additions & 8 deletions .github/.jazzy.yaml

This file was deleted.

1 change: 0 additions & 1 deletion .github/ranger.yml
Original file line number Original file line Diff line number Diff line change
@@ -1,3 +1,2 @@
merges: merges:
- action: delete_branch - action: delete_branch
- action: tag
2 changes: 1 addition & 1 deletion Documentation/GettingStarted.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -532,4 +532,4 @@ different API (sorry about that, but Swift has changed a lot over the years and
we had to too). we had to too).




[API Reference]: https://promisekit.org/reference/ [API Reference]: https://promisekit.org/reference/v6/
2 changes: 1 addition & 1 deletion Documentation/README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@
* [Troubleshooting](Troubleshooting.md) * [Troubleshooting](Troubleshooting.md)
* [Appendix](Appendix.md) * [Appendix](Appendix.md)
* [Examples](Examples) * [Examples](Examples)
* [API Reference](https://promisekit.org/reference/) * [API Reference](https://promisekit.org/reference/v6/)
2 changes: 1 addition & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ can continue to make tools and software you need and love. I appreciate it x.
* [Objective-C Guide](Documentation/ObjectiveC.md) * [Objective-C Guide](Documentation/ObjectiveC.md)
* [Troubleshooting](Documentation/Troubleshooting.md) (e.g., solutions to common compile errors) * [Troubleshooting](Documentation/Troubleshooting.md) (e.g., solutions to common compile errors)
* [Appendix](Documentation/Appendix.md) * [Appendix](Documentation/Appendix.md)
* [API Reference](https://promisekit.org/reference/) * [API Reference](https://promisekit.org/reference/v6/)


# Extensions # Extensions


Expand Down
8 changes: 4 additions & 4 deletions Sources/LogEvent.swift
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// A promise or guarantee has blocked the main thread /// A promise or guarantee has blocked the main thread
case waitOnMainThread case waitOnMainThread
/// A promise has been deallocated without being fulfilled /// A promise has been deallocated without being resolved
case pendingPromiseDeallocated case pendingPromiseDeallocated
/// An error which occurred while fulfilling a promise was swallowed /// An error which occurred while fulfilling a promise was swallowed
Expand All @@ -19,12 +19,12 @@ public enum LogEvent {
/// A promise or guarantee has blocked the main thread /// A promise or guarantee has blocked the main thread
case waitOnMainThread case waitOnMainThread


/// A promise has been deallocated without being fulfilled /// A promise has been deallocated without being resolved
case pendingPromiseDeallocated case pendingPromiseDeallocated


/// A guarantee has been deallocated without being fulfilled /// A guarantee has been deallocated without being resolved
case pendingGuaranteeDeallocated case pendingGuaranteeDeallocated


/// An error which occurred while fulfilling a promise was swallowed /// An error which occurred while resolving a promise was swallowed
case cauterized(Error) case cauterized(Error)
} }

0 comments on commit 716f9c2

Please sign in to comment.