From bae0ce5bf8bfd504f50b06d3f5f559959276146a Mon Sep 17 00:00:00 2001 From: Kurtsley Date: Tue, 4 Oct 2022 13:04:13 -0500 Subject: [PATCH] changed first name to last name and email --- .../dangers-of-mutability/_examples/dict_update.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/guides/adding-interactivity/dangers-of-mutability/_examples/dict_update.py b/docs/source/guides/adding-interactivity/dangers-of-mutability/_examples/dict_update.py index 9a2aad5e6..92085c0b6 100644 --- a/docs/source/guides/adding-interactivity/dangers-of-mutability/_examples/dict_update.py +++ b/docs/source/guides/adding-interactivity/dangers-of-mutability/_examples/dict_update.py @@ -28,13 +28,13 @@ def handle_email_change(event): ), ), html.label( - "First name: ", + "Last name: ", html.input( {"value": person["last_name"], "onChange": handle_last_name_change}, ), ), html.label( - "First name: ", + "Email: ", html.input( {"value": person["email"], "onChange": handle_email_change}, ),