Skip to content

Commit

Permalink
fixed typos
Browse files Browse the repository at this point in the history
  • Loading branch information
lsxliron committed Apr 19, 2024
1 parent 89e6eab commit 69ecfdc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lib/gnat/jetstream/api/kv.ex
Original file line number Diff line number Diff line change
Expand Up @@ -257,13 +257,13 @@ defmodule Gnat.Jetstream.API.KV do
## Parameters
- `headers` - a list of headers to test
## Example
## Examples
iex> is_delete_operation([{"kv-operation", "DEL"}])
iex> is_delete_operation?([{"kv-operation", "DEL"}])
true
iex> is_delete_operation([{"kv-operation", "PURGE"}])
iex> is_delete_operation?([{"kv-operation", "PURGE"}])
true
iex> is_delete_operation([{"kv-operation", "ADD"}])
iex> is_delete_operation?([{"kv-operation", "ADD"}])
true
"""
@spec is_delete_operation?(headers :: Gnat.headers()) :: boolean()
Expand Down

0 comments on commit 69ecfdc

Please sign in to comment.