#OTHER by mawalch
authormawalch
Wed, 06 Jul 2016 11:49:57 +0200
changeset 3984 4816610d2f76
parent 3983 08ddc72557a9
child 3985 f4df11cffecf
#OTHER by mawalch Spelling fixes.
IPv6SocketAddress.st
--- a/IPv6SocketAddress.st	Wed Jul 06 11:49:55 2016 +0200
+++ b/IPv6SocketAddress.st	Wed Jul 06 11:49:57 2016 +0200
@@ -1,5 +1,3 @@
-"{ Encoding: utf8 }"
-
 "
  COPYRIGHT (c) 1999 by eXept Software AG
               All Rights Reserved
@@ -97,7 +95,7 @@
         ^ NameLookupError raiseRequestWith:aString
             errorString:' - bad address string'.
     ].
-    "allow adresses formated like: '[2001:4dd0:ffa3::1]'"
+    "allow addresses formated like: '[2001:4dd0:ffa3::1]'"
     components first first = $[ ifTrue:[
         components at:1 put:(components first copyFrom:2).
         components last last = $] ifTrue:[
@@ -373,7 +371,7 @@
 !
 
 isLocal
-    "answer true, if this address adresses a peer on the same host: ::1/128"
+    "answer true, if this address addresses a peer on the same host: ::1/128"
 
     ^ (self at:9) == 0 and:[self hostAddress = self class local]