Skip to content

Commit

Permalink
Tiny spell fix (qiskit-community#1174)
Browse files Browse the repository at this point in the history
  • Loading branch information
yaelbh authored May 15, 2023
1 parent 6a732f4 commit 9a42316
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions qiskit_experiments/framework/experiment_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ def _add_job_data(
return jid, False
if status == JobStatus.ERROR:
LOG.error(
"Job data not added for errorred job [Job ID: %s]\nError message: %s",
"Job data not added for errored job [Job ID: %s]\nError message: %s",
jid,
job.error_message(),
)
Expand Down Expand Up @@ -1760,7 +1760,7 @@ def _wait_for_futures(
)
value = False

# Check for futures that were cancelled or errorred
# Check for futures that were cancelled or errored
excepts = ""
for fut in waited.done:
ex = fut.exception()
Expand Down

0 comments on commit 9a42316

Please sign in to comment.