Skip to content
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