Skip to content

Commit

Permalink
Godoc formatting update.
Browse files Browse the repository at this point in the history
  • Loading branch information
karalabe committed Apr 8, 2013
1 parent 72e3c82 commit deb5270
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
6 changes: 6 additions & 0 deletions prque/prque.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,12 @@
// Package prque implements a priority queue data structure supporting arbitrary
// value types and float priorities.
//
// The reasoning behind using floats for the priorities vs. ints or interfaces
// was larger flexibility without sacrificing too much performance or code
// complexity.
//
// If you would like to use a min-priority queue, simply negate the priorities.
//
// Internally the queue is based on the standard heap package working on a
// sortable version of the block based stack.
package prque
Expand Down
1 change: 1 addition & 0 deletions prque/sstack.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
// author(s).
//
// Author: [email protected] (Peter Szilagyi)

package prque

// The size of a block of data
Expand Down

0 comments on commit deb5270

Please sign in to comment.