Skip to content

Commit fe39534

Browse files
authored
fix: unmatched errors
Signed-off-by: Shabareesh Shetty <[email protected]>
1 parent 5700c0e commit fe39534

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/contributing/FAQ.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ limitations under the License.
2727
- [How can I set up my development environment to contribute to stdlib?](#setup-dev-environment)
2828
- [How can I install cppcheck?](#install-cppcheck)
2929
- [I am seeing different return values in the JavaScript and C implementation for the same implementation.](#js-vs-c-return-values)
30-
- [What should I do if Markdown linting on my commits fails because my headings exceed the maximum permissible length?](#markdown-heading-length)
30+
- [What should I do if linting on my commits fails because my headings or lines exceed the maximum permissible length?](#markdown-heading-length)
3131
- [What should I do if Javascript linting on my commits fails because my function exceed the maximum permissible number of parameters?](#max-params)
3232
- [I have opened a pull request, where can I seek feedback?](#pr-feedback)
3333
- [I need to generate fixtures for my tests. How can I do that, and what are the best references for inspiration?](#generate-fixtures)
@@ -100,7 +100,7 @@ If they pass, adjust the tolerance and add a note to the C tests indicating that
100100

101101
<a name="markdown-heading-length"></a>
102102

103-
## What should I do if linting on my commits fails because my headings exceed the maximum permissible length?
103+
## What should I do if linting on my commits fails because my headings or lintings exceed the maximum permissible length?
104104

105105
Consider whether the heading can be shortened by renaming variables (e.g., changing `strideX` to `sx`). If shortening is not possible, disable the lint rule at the top level using:
106106

@@ -110,15 +110,15 @@ Consider whether the heading can be shortened by renaming variables (e.g., chang
110110
// eslint-disable-line max-len
111111
```
112112

113-
- [Reference PR for Javascript][javascript-len-ref]
113+
[Reference PR][javascript-len-ref]
114114

115115
- For Markdown Files
116116

117117
```markdown
118118
<!-- lint disable maximum-heading-length -->
119119
```
120120

121-
- [Reference PR for Markdown][markdown-len-ref]
121+
[Reference PR][markdown-len-ref]
122122

123123
<a name="markdown-heading-length"></a>
124124

@@ -130,7 +130,7 @@ Consider whether the number of parameters can be reduced. If reducing is not pos
130130
// eslint-disable-line max-params
131131
```
132132

133-
- [Reference PR for Javascript][javascript-params-ref]
133+
[Reference PR][javascript-params-ref]
134134

135135
<a name="pr-feedback"></a>
136136

0 commit comments

Comments
 (0)