Remove duplicated instruction line in lighting example (#16767)

# Objective

There are two of the same instruction in this example's instruction
text.

## Solution

Delete one

## Testing

`cargo run --example lighting`
This commit is contained in:
Rob Parrett 2024-12-11 21:14:37 -08:00 committed by GitHub
parent ae16a648d7
commit cca6a2bbef
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -236,7 +236,6 @@ fn setup(
p.spawn(TextSpan::new("---------------\n"));
p.spawn(TextSpan::new("Arrow keys - Move objects\n"));
p.spawn(TextSpan::new("1/2 - Decrease/Increase aperture\n"));
p.spawn(TextSpan::new("Arrow keys - Move objects\n"));
p.spawn(TextSpan::new("3/4 - Decrease/Increase shutter speed\n"));
p.spawn(TextSpan::new("5/6 - Decrease/Increase sensitivity\n"));
p.spawn(TextSpan::new("R - Reset exposure"));