Skip to content

Commit 6fe9fa2

Browse files
authored
changed first name to last name and email (#815)
1 parent f59af55 commit 6fe9fa2

File tree

1 file changed

+2
-2
lines changed
  • docs/source/guides/adding-interactivity/dangers-of-mutability/_examples

1 file changed

+2
-2
lines changed

docs/source/guides/adding-interactivity/dangers-of-mutability/_examples/dict_update.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ def handle_email_change(event):
2828
),
2929
),
3030
html.label(
31-
"First name: ",
31+
"Last name: ",
3232
html.input(
3333
{"value": person["last_name"], "onChange": handle_last_name_change},
3434
),
3535
),
3636
html.label(
37-
"First name: ",
37+
"Email: ",
3838
html.input(
3939
{"value": person["email"], "onChange": handle_email_change},
4040
),

0 commit comments

Comments
 (0)