Skip to content

Fix Typo in Comments: "trhough" to "through" in textOutput.js #7911

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 16, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/accessibility/textOutput.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ function _textSummary(numShapes, background, width, height) {
function _shapeDetails(idT, ingredients) {
let shapeDetails = '';
let shapeNumber = 0;
//goes trhough every shape type in ingredients
//goes through every shape type in ingredients
for (let x in ingredients) {
//and for every shape
for (let y in ingredients[x]) {
Expand Down Expand Up @@ -91,7 +91,7 @@ function _shapeDetails(idT, ingredients) {
function _shapeList(idT, ingredients) {
let shapeList = '';
let shapeNumber = 0;
//goes trhough every shape type in ingredients
//goes through every shape type in ingredients
for (let x in ingredients) {
for (let y in ingredients[x]) {
//it creates a line in a list
Expand Down