fix confusing func names

This commit is contained in:
2023-11-24 20:29:05 -05:00
parent 1ec5459a79
commit 5962f9eaee
2 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ defmodule Poex.Pads.DocumentDynamicSupervisor do
DynamicSupervisor.start_link(__MODULE__, init_arg, name: __MODULE__)
end
def start_document_supervisor(args) do
def start_document_server(args) do
spec = {DocumentServer, args}
DynamicSupervisor.start_child(__MODULE__, spec)
end