Skip to content

Commit 389686a

Browse files
docs: update external docs (#2315)
Co-authored-by: Create or Update Pull Request Action <create-or-update-pull-request@users.noreply.github.com>
1 parent c5934a0 commit 389686a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/content/pages/en/resources/contributing.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ compromise among committers be the default resolution mechanism.
7676
### Becoming a Triager
7777

7878
Anyone can become a triager! Read more about the process of being a triager in
79-
[the triage process document](https://github.com/expressjs/discussions/blob/HEAD/Triager-Guide.md).
79+
[the triage process document](https://github.com/expressjs/discussions/blob/HEAD/contributing/triager-guide.md).
8080

8181
Currently, any existing [organization member](https://github.com/orgs/expressjs/people) can nominate
8282
a new triager. If you are interested in becoming a triager, our best advice is to actively participate

src/content/pages/en/resources/middleware/cors.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ var cors = require('cors');
160160
var app = express();
161161

162162
app.options('/products/:id', cors()); // preflight for DELETE
163-
app.del('/products/:id', cors(), function (req, res, next) {
163+
app.delete('/products/:id', cors(), function (req, res, next) {
164164
res.json({ msg: 'Hello' });
165165
});
166166

0 commit comments

Comments
 (0)