You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
on the code block of "A more complex example involving saving an array."
positions.addTag("positions");
will result in indefinitely adding a new positions tag
adding a tag exists around it will make sure this will not happen.
should be a small fix for someone who already has this repo setup for editing
if (!positions.tagExists("positions"))
{
positions.addTag("positions");
}
The text was updated successfully, but these errors were encountered:
on the code block of "A more complex example involving saving an array."
positions.addTag("positions");
will result in indefinitely adding a new positions tag
adding a tag exists around it will make sure this will not happen.
should be a small fix for someone who already has this repo setup for editing
if (!positions.tagExists("positions"))
{
positions.addTag("positions");
}
The text was updated successfully, but these errors were encountered: