Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
b27f05f6
Commit
b27f05f6
authored
Nov 10, 2009
by
Robert Griesemer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor adjustments to package comments for better synopsis.
R=rsc CC=r
http://go/go-review/1026038
parent
c9b5ca45
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
7 deletions
+8
-7
asn1.go
src/pkg/asn1/asn1.go
+2
-2
nat.go
src/pkg/big/nat.go
+2
-2
bytes.go
src/pkg/bytes/bytes.go
+1
-1
tabwriter.go
src/pkg/tabwriter/tabwriter.go
+3
-2
No files found.
src/pkg/asn1/asn1.go
View file @
b27f05f6
...
...
@@ -2,8 +2,8 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Th
is
package implements parsing of DER-encoded ASN.1 data structures,
// as defined in ITU-T Rec
.
X.690.
// Th
e asn1
package implements parsing of DER-encoded ASN.1 data structures,
// as defined in ITU-T Rec X.690.
//
// See also ``A Layman's Guide to a Subset of ASN.1, BER, and DER,''
// http://luca.ntop.org/Teaching/Appunti/asn1.html.
...
...
src/pkg/big/nat.go
View file @
b27f05f6
...
...
@@ -6,9 +6,9 @@
// These are the building blocks for the operations on signed integers
// and rationals.
// NOTE: PACKAGE UNDER CONSTRUCTION
(use bignum for the time being)
// NOTE: PACKAGE UNDER CONSTRUCTION
.
//
// Th
is
package implements multi-precision arithmetic (big numbers).
// Th
e big
package implements multi-precision arithmetic (big numbers).
// The following numeric types are supported:
//
// - Int signed integers
...
...
src/pkg/bytes/bytes.go
View file @
b27f05f6
...
...
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//
A package of simple functions to manipulate arrays of byt
es.
//
The bytes package implements functions for the manipulation of byte slic
es.
// Analagous to the facilities of the strings package.
package
bytes
...
...
src/pkg/tabwriter/tabwriter.go
View file @
b27f05f6
...
...
@@ -3,8 +3,9 @@
// license that can be found in the LICENSE file.
// The tabwriter package implements a write filter (tabwriter.Writer)
// that translates tabbed columns in input into properly aligned text,
// using the Elastic Tabstops algorithm described at
// that translates tabbed columns in input into properly aligned text.
//
// The package is using the Elastic Tabstops algorithm described at
// http://nickgravgaard.com/elastictabstops/index.html.
//
package
tabwriter
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment