From 51bdce3958627140ad3774bd995a4994d05ce6e2 Mon Sep 17 00:00:00 2001 From: Parker Morse Date: Tue, 3 Jun 2025 09:54:52 -0400 Subject: [PATCH] Change the names of friends and pets in working-with-lists tutorial It's not necessary for our tutorials to contribute to the cultural ubiquity of a hateful transphobe. --- .../tutorials/working-with-lists/03/after/my-element.ts | 8 ++++---- .../tutorials/working-with-lists/03/before/my-element.ts | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/packages/lit-dev-content/samples/tutorials/working-with-lists/03/after/my-element.ts b/packages/lit-dev-content/samples/tutorials/working-with-lists/03/after/my-element.ts index fcedcadef..763fab2b8 100644 --- a/packages/lit-dev-content/samples/tutorials/working-with-lists/03/after/my-element.ts +++ b/packages/lit-dev-content/samples/tutorials/working-with-lists/03/after/my-element.ts @@ -5,13 +5,13 @@ import type {TemplateResult} from 'lit'; @customElement('my-element') class MyElement extends LitElement { @state() - friends = ['Harry', 'Ron', 'Hermione']; + friends = ['Fern', 'Dorothy', 'Kiki']; @state() pets = [ - { name: "Hedwig", species: "Owl" }, - { name: "Scabbers", species: "Rat" }, - { name: "Crookshanks", species: "Cat" }, + { name: "Wilbur", species: "Pig" }, + { name: "Toto", species: "Dog" }, + { name: "Jiji", species: "Cat" }, ]; @state() diff --git a/packages/lit-dev-content/samples/tutorials/working-with-lists/03/before/my-element.ts b/packages/lit-dev-content/samples/tutorials/working-with-lists/03/before/my-element.ts index ef5a53404..f8ad80417 100644 --- a/packages/lit-dev-content/samples/tutorials/working-with-lists/03/before/my-element.ts +++ b/packages/lit-dev-content/samples/tutorials/working-with-lists/03/before/my-element.ts @@ -5,13 +5,13 @@ import type {TemplateResult} from 'lit'; @customElement('my-element') class MyElement extends LitElement { @state() - friends = ['Harry', 'Ron', 'Hermione']; + friends = ['Fern', 'Dorothy', 'Kiki']; @state() pets = [ - { name: "Hedwig", species: "Owl" }, - { name: "Scabbers", species: "Rat" }, - { name: "Crookshanks", species: "Cat" }, + { name: "Wilbur", species: "Pig" }, + { name: "Toto", species: "Dog" }, + { name: "Jiji", species: "Cat" }, ]; @state()