diff options
author | Austin Henriksen <austin@zeroc.com> | 2023-12-06 11:35:59 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-06 11:35:59 -0500 |
commit | e14afea88e4b3b65d29a64faa0f088cb986a9258 (patch) | |
tree | a3f6e11fab21a5105f40682d8fedeff25500a1a2 /csharp/src | |
parent | Fixed typo in _makeLambdaOutgoing name (diff) | |
download | ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.bz2 ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.tar.xz ice-e14afea88e4b3b65d29a64faa0f088cb986a9258.zip |
Fixed typos. (#1580)
Diffstat (limited to 'csharp/src')
-rw-r--r-- | csharp/src/Glacier2/SessionFactoryHelper.cs | 2 | ||||
-rw-r--r-- | csharp/src/Ice/AsyncResult.cs | 2 | ||||
-rw-r--r-- | csharp/src/Ice/InputStream.cs | 4 | ||||
-rw-r--r-- | csharp/src/Ice/MetricsAdminI.cs | 2 | ||||
-rw-r--r-- | csharp/src/Ice/ObjectAdapterI.cs | 6 | ||||
-rw-r--r-- | csharp/src/Ice/OutgoingAsync.cs | 2 | ||||
-rw-r--r-- | csharp/src/Ice/Patcher.cs | 6 | ||||
-rw-r--r-- | csharp/src/Ice/PluginManagerI.cs | 2 | ||||
-rw-r--r-- | csharp/src/Ice/ThreadHookPlugin.cs | 2 | ||||
-rw-r--r-- | csharp/src/IceBox/ServiceManagerI.cs | 2 |
10 files changed, 15 insertions, 15 deletions
diff --git a/csharp/src/Glacier2/SessionFactoryHelper.cs b/csharp/src/Glacier2/SessionFactoryHelper.cs index 0460ca135ee..f1934bf657c 100644 --- a/csharp/src/Glacier2/SessionFactoryHelper.cs +++ b/csharp/src/Glacier2/SessionFactoryHelper.cs @@ -301,7 +301,7 @@ public class SessionFactoryHelper /// <summary> /// Connects to the Glacier2 router using the associated SSL credentials. /// - /// Once the connection is established, SesssionCallback.connected is called on + /// Once the connection is established, SessionCallback.connected is called on /// the callback object; upon failure, SessionCallback.connectFailed is called /// with the exception. /// </summary> diff --git a/csharp/src/Ice/AsyncResult.cs b/csharp/src/Ice/AsyncResult.cs index 8fbb7378c4a..ed83e4025d2 100644 --- a/csharp/src/Ice/AsyncResult.cs +++ b/csharp/src/Ice/AsyncResult.cs @@ -155,7 +155,7 @@ namespace IceInternal public bool sentSynchronously() { Debug.Assert(outgoing_ != null); - return outgoing_.sentSynchronously(); // No lock needed + return outgoing_.sentSynchronously(); // No lock needed } // diff --git a/csharp/src/Ice/InputStream.cs b/csharp/src/Ice/InputStream.cs index 99100142d53..7768b4de778 100644 --- a/csharp/src/Ice/InputStream.cs +++ b/csharp/src/Ice/InputStream.cs @@ -832,12 +832,12 @@ namespace Ice // top-level sequence or enclosed sequence it doesn't really matter). // // Otherwise, we are reading an enclosed sequence and we have to bump - // _minSeqSize by the minimum size that this sequence will require on + // _minSeqSize by the minimum size that this sequence will require on // the stream. // // The goal of this check is to ensure that when we start un-marshalling // a new sequence, we check the minimal size of this new sequence against - // the estimated remaining buffer size. This estimatation is based on + // the estimated remaining buffer size. This estimation is based on // the minimum size of the enclosing sequences, it's _minSeqSize. // if(_startSeq == -1 || _buf.b.position() > (_startSeq + _minSeqSize)) diff --git a/csharp/src/Ice/MetricsAdminI.cs b/csharp/src/Ice/MetricsAdminI.cs index 0056c7195dc..05567be3129 100644 --- a/csharp/src/Ice/MetricsAdminI.cs +++ b/csharp/src/Ice/MetricsAdminI.cs @@ -972,7 +972,7 @@ namespace IceInternal { if(e.Key.IndexOf("IceMX.") == 0) { - // Udpate the metrics views using the new configuration. + // Update the metrics views using the new configuration. try { updateViews(); diff --git a/csharp/src/Ice/ObjectAdapterI.cs b/csharp/src/Ice/ObjectAdapterI.cs index 41f9ca2bea4..7101f9c216c 100644 --- a/csharp/src/Ice/ObjectAdapterI.cs +++ b/csharp/src/Ice/ObjectAdapterI.cs @@ -718,7 +718,7 @@ namespace Ice } } - public void updateThreadObservers() + public void updateThreadObservers() { ThreadPool threadPool = null; lock(this) @@ -1160,7 +1160,7 @@ namespace Ice // Get the router's server proxy endpoints and use them as the published endpoints. // endpoints = new List<EndpointI>(); - foreach(EndpointI endpt in _routerInfo.getServerEndpoints()) + foreach(EndpointI endpt in _routerInfo.getServerEndpoints()) { if(!endpoints.Contains(endpt)) { @@ -1179,7 +1179,7 @@ namespace Ice if(endpoints.Count == 0) { // - // If the PublishedEndpoints property isn't set, we compute the published enpdoints + // If the PublishedEndpoints property isn't set, we compute the published endpoints // from the OA endpoints, expanding any endpoints that may be listening on INADDR_ANY // to include actual addresses in the published endpoints. // diff --git a/csharp/src/Ice/OutgoingAsync.cs b/csharp/src/Ice/OutgoingAsync.cs index c0060a42386..0d7f528b80e 100644 --- a/csharp/src/Ice/OutgoingAsync.cs +++ b/csharp/src/Ice/OutgoingAsync.cs @@ -36,7 +36,7 @@ namespace IceInternal public virtual bool response() { - Debug.Assert(false); // Must be overriden by request that can handle responses + Debug.Assert(false); // Must be overridden by request that can handle responses return false; } diff --git a/csharp/src/Ice/Patcher.cs b/csharp/src/Ice/Patcher.cs index 7f87024f707..53a87079fc9 100644 --- a/csharp/src/Ice/Patcher.cs +++ b/csharp/src/Ice/Patcher.cs @@ -115,7 +115,7 @@ namespace IceInternal } catch(Exception ex) { - throw new Ice.MarshalException("Could not read Count property during patching", ex); + throw new Ice.MarshalException("Could not read Count property during patching", ex); } } @@ -128,7 +128,7 @@ namespace IceInternal } catch(Exception ex) { - throw new Ice.MarshalException("Could not invoke Add method during patching", ex); + throw new Ice.MarshalException("Could not invoke Add method during patching", ex); } } @@ -141,7 +141,7 @@ namespace IceInternal } catch(Exception ex) { - throw new Ice.MarshalException("Could not call indexer during patching", ex); + throw new Ice.MarshalException("Could not call indexer during patching", ex); } } diff --git a/csharp/src/Ice/PluginManagerI.cs b/csharp/src/Ice/PluginManagerI.cs index 8e841ab230d..d7648b7d4fc 100644 --- a/csharp/src/Ice/PluginManagerI.cs +++ b/csharp/src/Ice/PluginManagerI.cs @@ -396,7 +396,7 @@ namespace Ice string err = "unable to load plug-in `" + entryPoint + "': "; // // Always check the static plugin factory table first, it takes - // precedence over the the entryPoint specified in the plugin + // precedence over the entryPoint specified in the plugin // property value. // PluginFactory pluginFactory = null; diff --git a/csharp/src/Ice/ThreadHookPlugin.cs b/csharp/src/Ice/ThreadHookPlugin.cs index 52a43499fc8..d24f1d12b31 100644 --- a/csharp/src/Ice/ThreadHookPlugin.cs +++ b/csharp/src/Ice/ThreadHookPlugin.cs @@ -9,7 +9,7 @@ namespace Ice /// <summary> /// Class to support thread notification hooks. Applications using /// thread notification hooks instantiate a ThreadHookPlugin with a - /// thread notification hook and return the instance from their + /// thread notification hook and return the instance from their /// PluginFactory implementation. /// </summary> public class ThreadHookPlugin : Plugin diff --git a/csharp/src/IceBox/ServiceManagerI.cs b/csharp/src/IceBox/ServiceManagerI.cs index bd0ef6e72ff..666ff46e1fe 100644 --- a/csharp/src/IceBox/ServiceManagerI.cs +++ b/csharp/src/IceBox/ServiceManagerI.cs @@ -1030,7 +1030,7 @@ class ServiceManagerI : ServiceManagerDisp_ private string[] _argv; // Filtered server argument vector private List<ServiceInfo> _services = new List<ServiceInfo>(); private bool _pendingStatusChanges = false; - private Dictionary<ServiceObserverPrx, bool> _observers = new Dictionary<ServiceObserverPrx, bool>(); + private Dictionary<ServiceObserverPrx, bool> _observers = new Dictionary<ServiceObserverPrx, bool>(); private int _traceServiceObserver = 0; } |