From e2ac4765877851bbf0a41864e3a0589840c58c27 Mon Sep 17 00:00:00 2001 From: ljain112 Date: Mon, 13 Apr 2026 16:51:20 +0530 Subject: [PATCH] chore: spelling mistake --- erpnext/controllers/taxes_and_totals.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/controllers/taxes_and_totals.py b/erpnext/controllers/taxes_and_totals.py index 1e9761ac729..8d5dfec13eb 100644 --- a/erpnext/controllers/taxes_and_totals.py +++ b/erpnext/controllers/taxes_and_totals.py @@ -788,7 +788,7 @@ class calculate_taxes_and_totals: self.doc.grand_total, self.doc.currency, self.doc.precision("rounded_total") ) - # rounding adjustment should always be the difference vetween grand and rounded total + # rounding adjustment should always be the difference between grand and rounded total self.doc.rounding_adjustment = flt( self.doc.rounded_total - self.doc.grand_total, self.doc.precision("rounding_adjustment") )