Skip to content

Commit

Permalink
fix(Docs): Fix documented annotation as @RequireTags which should b…
Browse files Browse the repository at this point in the history
…e `@RequiresTag` (#3530)

* fix(Docs): Fix documented annotation as `@RequireTags` which should be `@RequiresTag`

* fix(Docs): Update all versions, `@RequireTags` has never been correct
  • Loading branch information
zakhenry committed May 17, 2023
1 parent 431b787 commit f2bd23c
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion documentation/docs/framework/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ For example, the following spec would be skipped and not instantiated unless the
specified at runtime.

```kotlin
@RequireTags("Linux", "Mysql")
@RequiresTag("Linux", "Mysql")
class MyTestClass : FunSpec()
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/versioned_docs/version-5.2/framework/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ For example, the following spec would be skipped and not instantiated unless the
specified at runtime.

```kotlin
@RequireTags("Linux", "Mysql")
@RequiresTag("Linux", "Mysql")
class MyTestClass : FunSpec()
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/versioned_docs/version-5.3/framework/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ For example, the following spec would be skipped and not instantiated unless the
specified at runtime.

```kotlin
@RequireTags("Linux", "Mysql")
@RequiresTag("Linux", "Mysql")
class MyTestClass : FunSpec()
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/versioned_docs/version-5.4/framework/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ For example, the following spec would be skipped and not instantiated unless the
specified at runtime.

```kotlin
@RequireTags("Linux", "Mysql")
@RequiresTag("Linux", "Mysql")
class MyTestClass : FunSpec()
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/versioned_docs/version-5.5/framework/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ For example, the following spec would be skipped and not instantiated unless the
specified at runtime.

```kotlin
@RequireTags("Linux", "Mysql")
@RequiresTag("Linux", "Mysql")
class MyTestClass : FunSpec()
```

Expand Down
2 changes: 1 addition & 1 deletion documentation/versioned_docs/version-5.6/framework/tags.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ For example, the following spec would be skipped and not instantiated unless the
specified at runtime.

```kotlin
@RequireTags("Linux", "Mysql")
@RequiresTag("Linux", "Mysql")
class MyTestClass : FunSpec()
```

Expand Down

0 comments on commit f2bd23c

Please sign in to comment.