Skip to content

Commit f6dca76

Browse files
committed
Fix typo
1 parent 325cc50 commit f6dca76

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • packages/sync-service/lib/electric/shape_cache

packages/sync-service/lib/electric/shape_cache/storage.ex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ defmodule Electric.ShapeCache.Storage do
7373
@doc """
7474
Get the current pg_snapshot for the shape storage.
7575
"""
76-
@callback fetch_pg_snapsho(shape_opts()) :: {:ok, pg_snapshot() | nil} | {:error, term()}
76+
@callback fetch_pg_snapshot(shape_opts()) :: {:ok, pg_snapshot() | nil} | {:error, term()}
7777

7878
@callback set_pg_snapshot(pg_snapshot(), shape_opts()) :: :ok
7979

@@ -281,8 +281,8 @@ defmodule Electric.ShapeCache.Storage do
281281
end
282282

283283
@impl __MODULE__
284-
def fetch_pg_snapsho({mod, shape_opts}) do
285-
mod.fetch_pg_snapsho(shape_opts)
284+
def fetch_pg_snapshot({mod, shape_opts}) do
285+
mod.fetch_pg_snapshot(shape_opts)
286286
end
287287

288288
@impl __MODULE__

0 commit comments

Comments
 (0)