From 0915146942ccf6703bb876311e88fd295d196134 Mon Sep 17 00:00:00 2001 From: Kenichi Ishigaki Date: Fri, 3 Feb 2023 17:16:58 +0900 Subject: [PATCH] Correct the pod for object_is_stored, which was called is_ephemeral and had the opposite meaning --- lib/Data/ObjectDriver/BaseObject.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Data/ObjectDriver/BaseObject.pm b/lib/Data/ObjectDriver/BaseObject.pm index 2c69179..90dbee0 100644 --- a/lib/Data/ObjectDriver/BaseObject.pm +++ b/lib/Data/ObjectDriver/BaseObject.pm @@ -1046,7 +1046,7 @@ are identical. =head2 C<$obj-Eobject_is_stored()> -Returns true if the object hasn't been stored in the database yet. +Returns true if the object has already been stored in the database. This is particularly useful in triggers where you can then determine if the object is being INSERTED or just UPDATED.