Skip to content

Commit fae097a

Browse files
chore: tweak docs (#126)
1 parent 80c5563 commit fae097a

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

Diff for: .github/ISSUE_TEMPLATE/Bug_Report.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ We'll probably ask you to submit the fix (after giving some direction). If you'v
2121
### Relevant code or config:
2222

2323
```js
24-
const your = code => 'here';
24+
const your = (code) => 'here';
2525
```
2626

2727
### What you did:

Diff for: .github/PULL_REQUEST_TEMPLATE.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@ Please fill out the information below to expedite the review and (hopefully) mer
2626
<!-- Add "(N/A)" to the end of each line that's irrelevant to your changes -->
2727
<!-- to check an item, place an "x" in the box like so: "- [x] Documentation" -->
2828

29-
- [ ] Documentation added to the
30-
[docs](https://github.com/testing-library/jest-native/README.md)
29+
- [ ] Documentation added to the [docs](https://github.com/testing-library/jest-native/README.md)
3130
- [ ] Typescript definitions updated
3231
- [ ] Tests
3332
- [ ] Ready to be merged <!-- In your opinion -->

Diff for: CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# CHANGELOG
22

33
The changelog is automatically updated using
4-
[semantic-release](https://github.com/semantic-release/semantic-release). You
5-
can see it on the [releases page](../../releases).
4+
[semantic-release](https://github.com/semantic-release/semantic-release). You can see it on the
5+
[releases page](../../releases).

Diff for: README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,9 @@ An element is visible if **all** the following conditions are met:
325325
- it does not have its style property `display` set to `none`.
326326
- it does not have its style property `opacity` set to `0`.
327327
- it is not a `Modal` component or it does not have the prop `visible` set to `false`.
328-
- it is not hidden from accessibility as checked by [`isInaccessible`](https://callstack.github.io/react-native-testing-library/docs/api#isinaccessible) function from React Native Testing Library
328+
- it is not hidden from accessibility as checked by
329+
[`isHiddenFromAccessibility`](https://callstack.github.io/react-native-testing-library/docs/api/#ishiddenfromaccessibility)
330+
function from React Native Testing Library
329331
- its ancestor elements are also visible.
330332

331333
#### Examples

0 commit comments

Comments
 (0)