Skip to content

Commit

Permalink
feat: update documentation
Browse files Browse the repository at this point in the history
Resolves: none.
  • Loading branch information
loay-ashraf committed May 17, 2024
1 parent fdb750a commit 1770138
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions Docs.docc/Pages/RxNetworkKit.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ RxNetworkKit is a generic reactive networking framework that leverages the stabi

- ``Session``
- ``SessionConfiguration``
- ``TLSTrustEvaluatorConfiguration``
- ``TLSTrustEvaluationPolicy``
- ``RESTClient``
- ``HTTPClient``

Expand Down
2 changes: 1 addition & 1 deletion Source/Session/Types/Session.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import Foundation

/// Wrapper object for `URLSession` that can be shared between multiple clients.
public class Session {
public final class Session {

/// Principal `URLSession`object used to create request tasks.
let urlSession: URLSession
Expand Down
2 changes: 1 addition & 1 deletion Source/TLS/Types/TLSTrustEvaluationPolicy.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

/// Policy for TLS server trust evaluation.
/// Policy for TLS server trust evaluation for a specific host.
public enum TLSTrustEvaluationPolicy {
/// Use the given certificates to evaluate the TLS server trust.
case certificates(_ certificates: Set<SecCertificate> = .default)
Expand Down
2 changes: 1 addition & 1 deletion Source/TLS/Types/TLSTrustEvaluatorConfiguration.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import Foundation

/// Configuration object for TLS server trust evaluation.
/// Configuration object for TLS server trust evaluator.
public class TLSTrustEvaluatorConfiguration {

/// Default `TLSTrustEvaluatorConfiguration` object.
Expand Down

0 comments on commit 1770138

Please sign in to comment.