@@ -347,7 +347,7 @@ class ParseArgumentSpecification {
347347 if (!consumePrefix (" argument" ))
348348 return nullptr ;
349349 // If this is a bare @argument reference, it refers to the first argument
350- // of the block containing the test_specification .
350+ // of the block containing the specify_test .
351351 if (!block) {
352352 block = context->getParent ();
353353 }
@@ -385,15 +385,15 @@ class ParseArgumentSpecification {
385385 if (empty () || peekPrefix (" ." )) {
386386 if (!within) {
387387 // If this is a bare @instruction reference, it refers to to the
388- // context of the test_specification .
388+ // context of the specify_test .
389389 return context;
390390 }
391391 return getInstructionAtIndex (0 , *within);
392392 }
393393 if (auto subscript = parseSubscript ()) {
394394 // If this is a bare @instruction[...] reference, it can refer either to
395395 // an instruction counting from the beginning of the function or else to
396- // an instruction offset from the context of the test_specification .
396+ // an instruction offset from the context of the specify_test .
397397 if (!within && subscript->isa <long long >()) {
398398 auto offset = subscript->get <long long >();
399399 return getInstructionOffsetFrom (context, offset);
@@ -422,7 +422,7 @@ class ParseArgumentSpecification {
422422 return nullptr ;
423423 if (empty () || peekPrefix (" ." )) {
424424 // If this is a bare @block reference, it refers to the block containing
425- // the test_specification instruction.
425+ // the specify_test instruction.
426426 if (!within) {
427427 return context->getParent ();
428428 }
@@ -432,7 +432,7 @@ class ParseArgumentSpecification {
432432 if (auto subscript = parseSubscript ()) {
433433 // If this is a bare @block[...] reference, it can refer either to a block
434434 // counting from the beginning of the function or else to a block offset
435- // from the block containing the context of the test_specification .
435+ // from the block containing the context of the specify_test .
436436 if (!within && subscript->isa <long long >()) {
437437 return getBlockOffsetFrom (context->getParent (),
438438 subscript->get <long long >());
@@ -462,7 +462,7 @@ class ParseArgumentSpecification {
462462 return nullptr ;
463463 if (empty () || peekPrefix (" ." )) {
464464 // If this is a bare @function reference, it refers to the function
465- // containing the test_specification instruction.
465+ // containing the specify_test instruction.
466466 if (!within) {
467467 return context->getFunction ();
468468 }
0 commit comments