You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ta...@apache.org on 2023/05/09 15:53:46 UTC

[qpid-proton-dotnet] branch main updated: PROTON-2728 Fix some API doc spelling errors

This is an automated email from the ASF dual-hosted git repository.

tabish pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/qpid-proton-dotnet.git


The following commit(s) were added to refs/heads/main by this push:
     new e3a5997  PROTON-2728 Fix some API doc spelling errors
e3a5997 is described below

commit e3a5997ea6555410526d2148c420da56e61c9364
Author: Timothy Bish <ta...@gmail.com>
AuthorDate: Tue May 9 11:53:17 2023 -0400

    PROTON-2728 Fix some API doc spelling errors
---
 src/Proton.Client/Client/DeliveryMode.cs  | 2 +-
 src/Proton.Client/Client/IStreamSender.cs | 2 +-
 src/Proton.Client/Client/SslOptions.cs    | 4 ++--
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/Proton.Client/Client/DeliveryMode.cs b/src/Proton.Client/Client/DeliveryMode.cs
index 682643f..0f9a479 100644
--- a/src/Proton.Client/Client/DeliveryMode.cs
+++ b/src/Proton.Client/Client/DeliveryMode.cs
@@ -24,7 +24,7 @@ namespace Apache.Qpid.Proton.Client
    {
       /// <summary>
       /// At most once delivery mode which configures the sender or receiver to
-      /// request presettled deliveries.  This is lowest level of reliability but
+      /// request pre-settled deliveries.  This is lowest level of reliability but
       /// the fastest overall mode as it does not require round trips from the
       /// remote to accept or settle the delivery.
       /// </summary>
diff --git a/src/Proton.Client/Client/IStreamSender.cs b/src/Proton.Client/Client/IStreamSender.cs
index 2017327..47b4684 100644
--- a/src/Proton.Client/Client/IStreamSender.cs
+++ b/src/Proton.Client/Client/IStreamSender.cs
@@ -76,7 +76,7 @@ namespace Apache.Qpid.Proton.Client
       Task<IStreamTracker> TrySendAsync<T>(IMessage<T> message, IDictionary<string, object> deliveryAnnotations = null);
 
       /// <summary>
-      /// Creates and returns a new streamable message that can be used by the caller to perform
+      /// Creates and returns a new stream capable message that can be used by the caller to perform
       /// streaming sends of large message payload data.  Only one streamed message can be active
       /// at a time so any successive calls to begin a new streaming message will throw an error
       /// to indicate that the previous instance has not yet been completed.
diff --git a/src/Proton.Client/Client/SslOptions.cs b/src/Proton.Client/Client/SslOptions.cs
index bdac544..1f758e7 100644
--- a/src/Proton.Client/Client/SslOptions.cs
+++ b/src/Proton.Client/Client/SslOptions.cs
@@ -114,12 +114,12 @@ namespace Apache.Qpid.Proton.Client
       /// <summary>
       /// Allows the user to override the TLS version that the client will request from the O/S
       /// when performing the TLS handshake.  By default the client will let the system choose the
-      /// best TLS version, however the user may wish to enforce a specifc value.
+      /// best TLS version, however the user may wish to enforce a specific value.
       /// </summary>
       public SslProtocols TlsVersionOverride { get; set; } = SslProtocols.None;
 
       /// <summary>
-      /// Provides a means of overrideing the default allowable SSL policy errors when validating
+      /// Provides a means of overriding the default allowable SSL policy errors when validating
       /// the server certificate during the TLS handshake. By default no errors are allowed and
       /// any that do occur will fail the TLS handshake.
       /// </summary>


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org