Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

README.md: add badges #10

Merged
merged 1 commit into from
Nov 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Go libraries and utilities by the CockroachDB team

[![Build Status](https://github.com/cockroachdb/crlib/actions/workflows/ci.yaml/badge.svg)](https://github.com/cockroachdb/crlib/actions/workflows/ci.yaml)
[![Go Report Card](https://goreportcard.com/badge/github.com/cockroachdb/crlib)](https://goreportcard.com/report/github.com/cockroachdb/crlib)
[![GoDoc](https://godoc.org/github.com/cockroachdb/crlib?status.svg)](https://godoc.org/github.com/cockroachdb/crlib)

This repository contains general-purpose Go libraries and utilities. It is intended as an "extended standard library" and it has no external dependencies.
2 changes: 1 addition & 1 deletion fifo/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ type QueueBackingPool[T any] struct {
pool sync.Pool
}

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