Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test pr lint check #14970

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions files/zh-cn/web/accessibility/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ MDN [无障碍学习区](/zh-CN/docs/Learn/Accessibility)包含现代的最新

## web 开发人员工具

- [自动化无障碍测试](http://www-archive.mozilla.org/quality/embed/plans/accessibility/nsIAccessibleTestPlan.html)
- [尖牙屏幕阅读模拟器](http://www.standards-schmandards.com/index.php?show/fangs)
* [自动化无障碍测试](http://www-archive.mozilla.org/quality/embed/plans/accessibility/nsIAccessibleTestPlan.html)
* [尖牙屏幕阅读模拟器](http://www.standards-schmandards.com/index.php?show/fangs)
Comment on lines +48 to +49
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[mdn-linter] reported by reviewdog 🐶

Suggested change
* [自动化无障碍测试](http://www-archive.mozilla.org/quality/embed/plans/accessibility/nsIAccessibleTestPlan.html)
* [尖牙屏幕阅读模拟器](http://www.standards-schmandards.com/index.php?show/fangs)
- [自动化无障碍测试](http://www-archive.mozilla.org/quality/embed/plans/accessibility/nsIAccessibleTestPlan.html)
- [尖牙屏幕阅读模拟器](http://www.standards-schmandards.com/index.php?show/fangs)


## 其他有用的网站

Expand Down
2 changes: 1 addition & 1 deletion files/zh-cn/web/javascript/reference/classes/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ slug: Web/JavaScript/Reference/Classes
定义类的一种方法是使用**类声明**。要声明一个类,你可以使用带有`class`关键字的类名(这里是“Rectangle”)。

```js
class Rectangle {
class Rectangle {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[mdn-linter] reported by reviewdog 🐶

Suggested change
class Rectangle {
class Rectangle {

constructor(height, width) {
this.height = height;
this.width = width;
Expand Down
Loading