aboutsummaryrefslogtreecommitdiff
path: root/core/net/url.odin
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2023-03-03 13:00:43 +0100
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2023-03-03 13:00:43 +0100
commitd5ea492ef55c802f9c1f1930cd6413e1c366481f (patch)
treeeb8fa65ff86e6aef1dd1836e2db928d7bce6a249 /core/net/url.odin
parent96ac40595281f5112aea41618901e0b70a324100 (diff)
Make more private.
Diffstat (limited to 'core/net/url.odin')
-rw-r--r--core/net/url.odin12
1 files changed, 6 insertions, 6 deletions
diff --git a/core/net/url.odin b/core/net/url.odin
index c1d46033f..a5e529928 100644
--- a/core/net/url.odin
+++ b/core/net/url.odin
@@ -1,3 +1,9 @@
+package net
+/*
+ Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
+ For other protocols and their features, see subdirectories of this package.
+*/
+
/*
Copyright 2022 Tetralux <tetraluxonpc@gmail.com>
Copyright 2022 Colin Davidson <colrdavidson@gmail.com>
@@ -10,12 +16,6 @@
Jeroen van Rijn: Cross platform unification, code style, documentation
*/
-/*
- Package net implements cross-platform Berkeley Sockets, DNS resolution and associated procedures.
- For other protocols and their features, see subdirectories of this package.
-*/
-package net
-
import "core:strings"
import "core:strconv"
import "core:unicode/utf8"