From 30e22f5da3fe830abed13e7a682970d7efaeb27f Mon Sep 17 00:00:00 2001 From: onlychoice Date: Tue, 24 Jun 2014 16:40:35 +0800 Subject: [PATCH] Fix a typo in comment --- .../src/main/java/io/netty/bootstrap/AbstractBootstrap.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport/src/main/java/io/netty/bootstrap/AbstractBootstrap.java b/transport/src/main/java/io/netty/bootstrap/AbstractBootstrap.java index 0f11be5e27..557e46f8ef 100644 --- a/transport/src/main/java/io/netty/bootstrap/AbstractBootstrap.java +++ b/transport/src/main/java/io/netty/bootstrap/AbstractBootstrap.java @@ -314,7 +314,7 @@ public abstract class AbstractBootstrap, C ext // If we are here and the promise is not failed, it's one of the following cases: // 1) If we attempted registration from the event loop, the registration has been completed at this point. - // i.e. It's safe to attempt bind() or connect() now beause the channel has been registered. + // i.e. It's safe to attempt bind() or connect() now because the channel has been registered. // 2) If we attempted registration from the other thread, the registration request has been successfully // added to the event loop's task queue for later execution. // i.e. It's safe to attempt bind() or connect() now: