Skip to content

Commit

Permalink
Fixed an issue where the documentation had a broken link (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
brototyp authored Mar 14, 2021
1 parent 5da8229 commit 74bdc8b
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 1 addition & 0 deletions .jazzy.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
module: Cauliframework
xcodebuild_arguments: [-workspace, Cauliframework.xcworkspace, -scheme, Cauliframework]
author_url: https://cauli.works
github_url: https://github.com/cauliframework/cauli
output: docs/generated
Expand Down
2 changes: 0 additions & 2 deletions Cauli/CauliURLProtocol/CauliURLProtocol.swift
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,6 @@ private extension CauliURLProtocol {
class func handles(_ record: Record) -> Bool {
delegates.contains { $0.handles(record) }
}



func willRequest(_ record: Record, modificationCompletionHandler completionHandler: @escaping (Record) -> Void) {
CauliURLProtocol.delegates.cauli_reduceAsync(record, transform: { record, delegate, completion in
Expand Down
2 changes: 1 addition & 1 deletion Cauli/Floret.swift
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public extension Floret {
}

var description: String? {
return nil
nil
}
}
// swiftlint:enable missing_docs
2 changes: 1 addition & 1 deletion docs/guides/Writing Your Own Plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ You can write your own plugin if you want to process requests before they get se

Before implementing your own idea, you have to decide which Floret base protocol suits you best. You can also implement multiple.

**[InterceptingFloret]](https://cauli.works/docs/Protocols/InterceptingFloret.html):** This protocol let's you process requests and responses.
**[InterceptingFloret](https://cauli.works/docs/Protocols/InterceptingFloret.html):** This protocol let's you process requests and responses.
**[DisplayingFloret](https://cauli.works/docs/Protocols/DisplayingFloret.html):** This protocol let's you create a custom UIViewController for your floret.
**[Floret](https://cauli.works/docs/Protocols/Floret.html):** The Floret protocol is the base for the protocols described above. It should not be implemented directly, since there will be no effect.

Expand Down

0 comments on commit 74bdc8b

Please sign in to comment.