image: add import comments.

Change-Id: I2d3a1d002ad43af24cd8b451a2cae4c217482675
Reviewed-on: https://go-review.googlesource.com/1237
Reviewed-by: Andrew Gerrand <adg@golang.org>
This commit is contained in:
David Symonds 2014-12-09 13:51:12 +11:00 committed by Andrew Gerrand
parent b0cc87690b
commit 0351284b2d
9 changed files with 9 additions and 9 deletions

View File

@ -5,7 +5,7 @@
// Package bmp implements a BMP image decoder and encoder. // Package bmp implements a BMP image decoder and encoder.
// //
// The BMP specification is at http://www.digicamsoft.com/bmp/bmp.html. // The BMP specification is at http://www.digicamsoft.com/bmp/bmp.html.
package bmp package bmp // import "golang.org/x/image/bmp"
import ( import (
"errors" "errors"

View File

@ -1,6 +1,6 @@
// Program webp-manual-test checks that the Go WEBP library's decodings match // Program webp-manual-test checks that the Go WEBP library's decodings match
// the C WEBP library's. // the C WEBP library's.
package main package main // import "golang.org/x/image/cmd/webp-manual-test"
import ( import (
"bytes" "bytes"

View File

@ -11,7 +11,7 @@
// //
// A detailed description of the format is at // A detailed description of the format is at
// http://www.tactilemedia.com/info/MCI_Control_Info.html // http://www.tactilemedia.com/info/MCI_Control_Info.html
package riff package riff // import "golang.org/x/image/riff"
import ( import (
"errors" "errors"

View File

@ -8,7 +8,7 @@
// //
// In particular, it implements LZW as used by the TIFF file format, including // In particular, it implements LZW as used by the TIFF file format, including
// an "off by one" algorithmic difference when compared to standard LZW. // an "off by one" algorithmic difference when compared to standard LZW.
package lzw package lzw // import "golang.org/x/image/tiff/lzw"
/* /*
This file was branched from src/pkg/compress/lzw/reader.go in the This file was branched from src/pkg/compress/lzw/reader.go in the

View File

@ -5,7 +5,7 @@
// Package tiff implements a TIFF image decoder and encoder. // Package tiff implements a TIFF image decoder and encoder.
// //
// The TIFF specification is at http://partners.adobe.com/public/developer/en/tiff/TIFF6.pdf // The TIFF specification is at http://partners.adobe.com/public/developer/en/tiff/TIFF6.pdf
package tiff package tiff // import "golang.org/x/image/tiff"
import ( import (
"compress/zlib" "compress/zlib"

View File

@ -5,7 +5,7 @@
// Package vp8 implements a decoder for the VP8 lossy image format. // Package vp8 implements a decoder for the VP8 lossy image format.
// //
// The VP8 specification is RFC 6386. // The VP8 specification is RFC 6386.
package vp8 package vp8 // import "golang.org/x/image/vp8"
// This file implements the top-level decoding algorithm. // This file implements the top-level decoding algorithm.

View File

@ -6,7 +6,7 @@
// //
// The VP8L specification is at: // The VP8L specification is at:
// https://developers.google.com/speed/webp/docs/riff_container // https://developers.google.com/speed/webp/docs/riff_container
package vp8l package vp8l // import "golang.org/x/image/vp8l"
import ( import (
"bufio" "bufio"

View File

@ -6,7 +6,7 @@
// //
// WEBP is defined at: // WEBP is defined at:
// https://developers.google.com/speed/webp/docs/riff_container // https://developers.google.com/speed/webp/docs/riff_container
package webp package webp // import "golang.org/x/image/webp"
import ( import (
"bytes" "bytes"

View File

@ -4,7 +4,7 @@
// Package nycbcra provides non-alpha-premultiplied Y'CbCr-with-alpha image and // Package nycbcra provides non-alpha-premultiplied Y'CbCr-with-alpha image and
// color types. // color types.
package nycbcra package nycbcra // import "golang.org/x/image/webp/nycbcra"
import ( import (
"image" "image"