From 268863a2b6b711ef4a2b893265c14dcf0c2bd323 Mon Sep 17 00:00:00 2001 From: Hussain Nagaria <34810212+NagariaHussain@users.noreply.github.com> Date: Sat, 6 Sep 2025 16:05:38 +0530 Subject: [PATCH] chore: typo in comments (#33929) --- frappe/utils/nestedset.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frappe/utils/nestedset.py b/frappe/utils/nestedset.py index 0c85788ac1..01da1bd815 100644 --- a/frappe/utils/nestedset.py +++ b/frappe/utils/nestedset.py @@ -7,7 +7,7 @@ # use the following pattern # 1. name your parent field as "parent_item_group" if not have a property nsm_parent_field as your field name in the document class # 2. have a field called "old_parent" in your fields list - this identifies whether the parent has been changed -# 3. call update_nsm(doc_obj) in the on_upate method +# 3. call update_nsm(doc_obj) in the on_update method # ------------------------------------------ from collections.abc import Iterator