Skip to content

Commit ee60504

Browse files
committed
address comments
1 parent 0c96545 commit ee60504

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

doc/catalog-format-spec.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -453,19 +453,19 @@ static, i.e. they cannot depend on the context.
453453
jobs = <number>
454454
```
455455

456-
`<builtin>` is a builtin test runner name, currently only `'alire'`.
456+
`<builtin>` is a built-in test runner name, currently only `'alire'`.
457457
`<command>` is an array of strings that will be run as an external command.
458458

459459
When running `alr test`, Alire will first enter the given `directory`, a
460-
subfolder of the crate root, and execute either the builtin test runner or
460+
subfolder of the crate root, and execute either the built-in test runner or
461461
the given external command.
462462

463463
The `jobs` parameter describes how many tests should be run in parallel. It
464-
is only valid in the context of the builtin test runner for now.
464+
is only valid in the context of the built-in test runner for now.
465465

466466
The `[test]` section also accepts an array of test runners (with
467-
`[[test]]`), although this is not recommended, as you lose the ability to
468-
pass extra arguments to the test command with `alr test`.
467+
`[[test]]`), although you lose the ability to pass extra arguments to the
468+
test command with `alr test`.
469469

470470
- `auto-gpr-with`: optional Boolean value that specifies if the project (gpr) files
471471
of a crate can be automatically depended upon ('withed') directly by the root

doc/getting-started.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -318,7 +318,7 @@ projects. It needs to be configured in a `[test]` section of the Alire manifest,
318318
by specifying either `runner = 'alire'` or a custom runner with
319319
`command = [...]`.
320320
Any arguments passed to the `alr test` command are passed as-is to the runner
321-
command (or the builtin runner, which uses them for test filtering).
321+
command (or the built-in runner, which uses them for test filtering).
322322

323323
It is recommended to provide tests for a library in a `tests` or `testsuite`
324324
subfolder of the root crate; if your test suite is an Alire crate, it can then
@@ -334,7 +334,7 @@ mycrate = { path = '..' }
334334

335335
### Built-in runner
336336

337-
The builtin Alire test runner provides a simple way to run `.adb` files as
337+
The built-in Alire test runner provides a simple way to run `.adb` files as
338338
separate tests. It requires setting up a subcrate, with a GPR file that defines
339339
its executables in a specific way:
340340

0 commit comments

Comments
 (0)