Skip to content

Commit b362a21

Browse files
committed
fix: lint
1 parent 5615145 commit b362a21

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

content/manuals/testcontainers/benefits.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ aliases:
88
- /testcontainers/benefits/
99
---
1010

11-
### Benefits of using Testcontainers:
11+
### Benefits of using Testcontainers
1212

1313
* **On-demand isolated infrastructure provisioning:**
1414
You don't need to have a pre-provisioned integration testing infrastructure.

content/manuals/testcontainers/getting-started/go.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ _Testcontainers for Go_ is tested against those two latest Go releases, therefor
2828

2929
_Testcontainers for Go_ uses [go mod](https://blog.golang.org/using-go-modules) and you can get it installed via:
3030

31-
```
31+
```bash
3232
go get github.com/testcontainers/testcontainers-go
3333
```
3434

@@ -93,7 +93,7 @@ automatically handles nil container so is safe to use even in the error case.
9393

9494
> [!TIP]
9595
>
96-
> Look at [features/garbage_collector](/features/garbage_collector/) to know another
96+
> Look at [features/garbage_collector](https://golang.testcontainers.org/features/garbage_collector/) to know another
9797
> way to clean up resources.
9898
9999
## Step 3: Make your code talk to the container

content/manuals/testcontainers/getting-started/java.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ underTest = new RedisBackedCache(address, port);
117117
> not work on your current or future CI environment. As such, **avoid hard-coding** the address, and use
118118
> `getHost()` instead.
119119
120-
### Step 4: Run the tests!
120+
### Step 4: Run the tests
121121

122122
That's it!
123123

@@ -282,7 +282,7 @@ Those attributes can be helpful when:
282282
current environment. Set `disabledWithoutDocker` to `true`.
283283
* Enable parallel container initialization instead of sequential (by default). Set `parallel` to `true`.
284284

285-
### Step 5: Run the tests!
285+
### Step 5: Run the tests
286286

287287
That's it!
288288

@@ -431,7 +431,7 @@ underTest = new RedisBackedCache(address, port)
431431
> not work on your current or future CI environment. As such, **avoid hard-coding** the address, and use
432432
> `containerIpAddress` instead.
433433
434-
### Step 4: Run the tests!
434+
### Step 4: Run the tests
435435

436436
That's it!
437437

0 commit comments

Comments
 (0)