Skip to content

Commit

Permalink
Fix typo in comment
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Oct 31, 2024
1 parent 93e950e commit 0e1f210
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion csharp/test/Ice/ami/TestI.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public override Task
{
if (_shutdown)
{
// Ignore, this can occur with the forcefull connection close test, shutdown can be dispatch
// Ignore, this can occur with the forceful connection close test, shutdown can be dispatch
// before start dispatch.
var v = new TaskCompletionSource<object>();
v.SetResult(null);
Expand Down
2 changes: 1 addition & 1 deletion java/test/src/main/java/test/Ice/ami/TestI.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void sleep(int ms, com.zeroc.Ice.Current current) {
@Override
public synchronized CompletionStage<Void> startDispatchAsync(com.zeroc.Ice.Current current) {
if (_shutdown) {
// Ignore, this can occur with the forcefull connection close test, shutdown can be
// Ignore, this can occur with the forceful connection close test, shutdown can be
// dispatch
// before start dispatch.
CompletableFuture<Void> v = new CompletableFuture<>();
Expand Down

0 comments on commit 0e1f210

Please sign in to comment.