From f2615933c1d31dd82f8c7e0f9630bd154ea12403 Mon Sep 17 00:00:00 2001 From: Stephen Cleary Date: Sat, 2 Dec 2023 10:50:34 -0500 Subject: [PATCH] Fix links. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0f98d1..ebd5a16 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ![Logo](src/icon.png) -# Deque [![Build status](https://github.com/StephenCleary/Deque/workflows/Build/badge.svg)](https://github.com/StephenCleary/Deque/actions?query=workflow%3ABuild) [![codecov](https://codecov.io/gh/StephenCleary/Deque/branch/main/graph/badge.svg)](https://codecov.io/gh/StephenCleary/Deque) [![NuGet version](https://badge.fury.io/nu/Nito.Deque.svg)](https://www.nuget.org/packages/Nito.Deque) [![API docs](https://img.shields.io/badge/API-dotnetapis-blue.svg)](http://dotnetapis.com/pkg/Nito.Deque) +# Deque [![Build status](https://github.com/StephenCleary/Deque/workflows/Build/badge.svg)](https://github.com/StephenCleary/Deque/actions?query=workflow%3ABuild) [![codecov](https://codecov.io/gh/StephenCleary/Deque/branch/main/graph/badge.svg)](https://codecov.io/gh/StephenCleary/Deque) [![NuGet version](https://badge.fury.io/nu/Nito.Collections.Deque.svg)](https://www.nuget.org/packages/Nito.Collections.Deque) [![API docs](https://img.shields.io/badge/API-FuGet-blue.svg)](https://www.fuget.org/packages/Nito.Collections.Deque) A double-ended queue, which provides O(1) indexed access, O(1) removals from the front and back, amortized O(1) insertions to the front and back, and O(N) insertions and removals anywhere else.