typo in the docs

This commit is contained in:
Miek Gieben 2012-02-19 22:38:13 +01:00
parent 28f24b46e6
commit 3b4840e847
2 changed files with 1 additions and 4 deletions

2
dns.go
View File

@ -7,7 +7,7 @@
//
// Package dns implements a full featured interface to the Domain Name System.
// The package allows complete control over what is send out to the DNS. The package
// API follows the less-is-more principle, but presenting a small, clean interface.
// API follows the less-is-more principle, by presenting a small, clean interface.
//
// Resource records are native types. They are not stored in wire format.
// Basic usage pattern for creating a new resource record:

View File

@ -4,9 +4,6 @@
package dns
// Function defined in this subpackage work on []byte and but still
// provide some higher level functions.
// RawSetId sets the message ID in buf. The offset 'off' must
// be positioned at the beginning of the message.
func RawSetId(msg []byte, off int, id uint16) bool {