Skip to content

Commit 82c35eb

Browse files
committed
Update docs for ASP009
1 parent f9333fb commit 82c35eb

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

documentation/ASP009.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,25 @@ Use kebab-cased urls.
3232

3333
## Motivation
3434

35-
ADD MOTIVATION HERE
35+
```cs
36+
[HttpGet(""api/TwoWords"")]
37+
public IActionResult GetId()
38+
{
39+
...
40+
}
41+
```
3642

3743
## How to fix violations
3844

39-
ADD HOW TO FIX VIOLATIONS HERE
45+
```cs
46+
[HttpGet(""api/two-words"")]
47+
public IActionResult GetId()
48+
{
49+
...
50+
}
51+
```
52+
53+
Use kebab-cased urls.
4054

4155
<!-- start generated config severity -->
4256
## Configure severity

0 commit comments

Comments
 (0)