Skip to content
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# CircularBuffer

[![Hex version](https://img.shields.io/hexpm/v/circular_buffer.svg "Hex version")](https://hex.pm/packages/circular_buffer)
[![API docs](https://img.shields.io/hexpm/v/circular_buffer.svg?label=hexdocs "API docs")](https://hexdocs.pm/circular_buffer/CircularBuffer.html)
[![API docs](https://img.shields.io/hexpm/v/circular_buffer.svg?label=hexdocs "API docs")](https://circular-buffer.hexdocs.pm/CircularBuffer.html)
[![CI](https://github.com/elixir-toniq/circular_buffer/actions/workflows/elixir.yml/badge.svg)](https://github.com/elixir-toniq/circular_buffer/actions/workflows/elixir.yml)
[![REUSE status](https://api.reuse.software/badge/github.com/elixir-toniq/circular_buffer)](https://api.reuse.software/info/github.com/elixir-toniq/circular_buffer)

Expand Down
4 changes: 2 additions & 2 deletions lib/circular_buffer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ defmodule CircularBuffer do
of operations.

CircularBuffer implements both the
[`Enumerable`](https://hexdocs.pm/elixir/Enumerable.html) and
[`Collectable`](https://hexdocs.pm/elixir/Collectable.html) protocols, so code
[`Enumerable`](https://elixir.hexdocs.pm/Enumerable.html) and
[`Collectable`](https://elixir.hexdocs.pm/Collectable.html) protocols, so code
like the following works:

iex> cb = Enum.into([1, 2, 3, 4], CircularBuffer.new(3))
Expand Down
Loading