diff options
| author | 2014-12-09 19:22:33 +0000 | |
|---|---|---|
| committer | 2014-12-09 19:22:33 +0000 | |
| commit | 12f100def9e34a554df07f47badc259028ac4c68 (patch) | |
| tree | daf8f5c19d0c0f6bbc48e748b6f9ee0a0794d803 | |
| parent | 780a2231ff23d85e56a7a7ddd4a4768d85d6a0c9 (diff) | |
| parent | e8f6cb065c33c21dfefe0039739dc38fde5cff6d (diff) | |
am e8f6cb06: Merge "Fix typo." into lmp-docs
* commit 'e8f6cb065c33c21dfefe0039739dc38fde5cff6d':
Fix typo.
| -rw-r--r-- | core/java/android/net/LocalServerSocket.java | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/core/java/android/net/LocalServerSocket.java b/core/java/android/net/LocalServerSocket.java index a36203be9f40..9464222f091d 100644 --- a/core/java/android/net/LocalServerSocket.java +++ b/core/java/android/net/LocalServerSocket.java @@ -20,12 +20,8 @@ import java.io.IOException; import java.io.FileDescriptor; /** - * non-standard class for creating inbound UNIX-domain socket - * on the Android platform, this is created in the Linux non-filesystem - * namespace. - * - * On simulator platforms, this may be created in a temporary directory on - * the filesystem + * Non-standard class for creating an inbound UNIX-domain socket + * in the Linux abstract namespace. */ public class LocalServerSocket { private final LocalSocketImpl impl; @@ -35,7 +31,7 @@ public class LocalServerSocket { private static final int LISTEN_BACKLOG = 50; /** - * Crewates a new server socket listening at specified name. + * Creates a new server socket listening at specified name. * On the Android platform, the name is created in the Linux * abstract namespace (instead of on the filesystem). * |