From bd190f91f29bb123811125c460322945d64ebe07 Mon Sep 17 00:00:00 2001 From: Zach Daniel Date: Tue, 3 Nov 2020 00:43:57 -0500 Subject: [PATCH] docs: update docs --- lib/ash/changeset/changeset.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ash/changeset/changeset.ex b/lib/ash/changeset/changeset.ex index 24f8bc24..ec826868 100644 --- a/lib/ash/changeset/changeset.ex +++ b/lib/ash/changeset/changeset.ex @@ -2,7 +2,7 @@ defmodule Ash.Changeset do @moduledoc """ Changesets are used to create and update data in Ash. - Create a changeset with `create/2` or `update/2`, and alter the attributes + Create a changeset with `new/1` or `new/2`, and alter the attributes and relationships using the functions provided in this module. Nothing in this module actually incurs changes in a data layer. To commit a changeset, see `c:Ash.Api.create/2` and `c:Ash.Api.update/2`.