From 80762b311314d791dd54a7a4e10320bc688d5cf6 Mon Sep 17 00:00:00 2001 From: Priyanshu pundir <149523923+priyanshupundir@users.noreply.github.com> Date: Wed, 20 May 2026 13:58:50 +0530 Subject: [PATCH] fix: add missing backticks to get_balance method (#67467) --- .../68420be9af9d89620af7944a.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/blocks/lecture-understanding-object-oriented-programming-and-encapsulation/68420be9af9d89620af7944a.md b/curriculum/challenges/english/blocks/lecture-understanding-object-oriented-programming-and-encapsulation/68420be9af9d89620af7944a.md index 5ce4c2adc95..743831c45ab 100644 --- a/curriculum/challenges/english/blocks/lecture-understanding-object-oriented-programming-and-encapsulation/68420be9af9d89620af7944a.md +++ b/curriculum/challenges/english/blocks/lecture-understanding-object-oriented-programming-and-encapsulation/68420be9af9d89620af7944a.md @@ -88,7 +88,7 @@ account = Wallet(500) print(account.__balance) # AttributeError: 'Wallet' object has no attribute '__balance' ``` -To get the current value of `__balance`, you can define a get_balance method. For example: +To get the current value of `__balance`, you can define a `get_balance` method. For example: ```py class Wallet: