diff --git a/lib/exstreme/graph.ex b/lib/exstreme/graph.ex index 0707a39..72f18a5 100644 --- a/lib/exstreme/graph.ex +++ b/lib/exstreme/graph.ex @@ -7,7 +7,7 @@ defmodule Exstreme.Graph do @typedoc """ Represents the Graph data """ - @type t :: %Graph{name: String.t,params: [key: term], nodes: %{key: [key: term]}, connections: %{key: atom}} + @type t :: %Graph{name: String.t, params: [key: term], nodes: %{key: [key: term]}, connections: %{key: atom}} defstruct name: '', params: [], nodes: %{}, connections: %{} @doc """