Skip to content

Commit e5b523c

Browse files
committed
README.md: add badges
1 parent f2ca848 commit e5b523c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
# Go libraries and utilities by the CockroachDB team
22

3+
[![Build Status](https://github.com/cockroachdb/crlib/actions/workflows/ci.yaml/badge.svg)](https://github.com/cockroachdb/crlib/actions/workflows/ci.yaml)
4+
[![Go Report Card](https://goreportcard.com/badge/github.com/cockroachdb/crlib)](https://goreportcard.com/report/github.com/cockroachdb/crlib)
5+
[![GoDoc](https://godoc.org/github.com/cockroachdb/crlib?status.svg)](https://godoc.org/github.com/cockroachdb/crlib)
6+
37
This repository contains general-purpose Go libraries and utilities. It is intended as an "extended standard library" and it has no external dependencies.

fifo/queue.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ type QueueBackingPool[T any] struct {
105105
pool sync.Pool
106106
}
107107

108-
// MakeQueueBackingPool makes a queue backing pool. It is intented to be used to
108+
// MakeQueueBackingPool makes a queue backing pool. It is intended to be used to
109109
// initialize a singleton (global) variable. A single pool can and should be
110110
// used by all queues of that type.
111111
func MakeQueueBackingPool[T any]() QueueBackingPool[T] {

0 commit comments

Comments
 (0)