From 4819d951789eee32520393fa594e18e33f9d04bb Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Wed, 12 Jun 2024 20:11:19 -0400 Subject: [PATCH] docs: fix docs for `add_code/3` --- lib/code/common.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/code/common.ex b/lib/code/common.ex index 1fd8163..ca9b6e4 100644 --- a/lib/code/common.ex +++ b/lib/code/common.ex @@ -78,7 +78,7 @@ defmodule Igniter.Code.Common do existing_code |> Sourceror.Zipper.zip() - Code.|> Igniter.Common.add_code(new_code) + |> Igniter.Common.add_code(new_code) |> Sourceror.Zipper.root() |> Sourceror.to_string() ```