Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit afbcdb8

Browse files
Merge pull request #1195 from utPLSQL/bugfix/typo-in-annotations-doc
Fix typos in annotations.md and expectations.md
2 parents 4602023 + 5ff7f44 commit afbcdb8

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/userguide/annotations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ end;
127127
| `--%suite(<description>)` | Package | Mandatory. Marks package as a test suite. Optional suite description can be provided (see `displayname`). |
128128
| `--%suitepath(<path>)` | Package | Similar to java package. The annotation allows logical grouping of suites into hierarchies. |
129129
| `--%displayname(<description>)` | Package/procedure | Human-readable and meaningful description of a context/suite/test. Overrides the `<description>` provided with `suite`/`test`/`context` annotation. This annotation is redundant and might be removed in future releases. |
130-
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can by provided (see `displayname`). |
130+
| `--%test(<description>)` | Procedure | Denotes that the annotated procedure is a unit test procedure. Optional test description can be provided (see `displayname`). |
131131
| `--%throws(<exception>[,...])`| Procedure | Denotes that the annotated test procedure must throw one of the exceptions provided. Supported forms of exceptions are: numeric literals, numeric constant names, exception constant names, predefined Oracle exception names. |
132132
| `--%beforeall` | Procedure | Denotes that the annotated procedure should be executed once before all elements of the suite. |
133133
| `--%beforeall([[<owner>.]<package>.]<procedure>[,...])` | Package | Denotes that the mentioned procedure(s) should be executed once before all elements of the suite. |

docs/userguide/expectations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1096,7 +1096,7 @@ SUCCESS
10961096
10971097
## to_be_within of
10981098
1099-
Determines wheter expected value is within range (tolerance) from another value.
1099+
Determines whether expected value is within range (tolerance) from another value.
11001100
11011101
The logical formual used for calcuating the matcher is:
11021102
```
@@ -1177,7 +1177,7 @@ Failures:
11771177
11781178
## to_be_within_pct of
11791179
1180-
Determines wheter actual value is within percentage range of expected value.
1180+
Determines whether actual value is within percentage range of expected value.
11811181
The matcher only works with `number` data-type.
11821182
11831183
The percentage deviation (distance) must be expressed as a non-negative number.

0 commit comments

Comments
 (0)