Skip to content

Commit c593ce0

Browse files
fix(groups): fixed missing single quote
1 parent 2c65ca5 commit c593ce0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/concept/group.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ You can create as many nested groups as you like:
3737
app.group('/v1', app => app
3838
.get('/', () => 'Using v1')
3939
.group('/user', app => app
40-
.post('/sign-in, signIn)
40+
.post('/sign-in', signIn)
4141
.post('/sign-up', signUp)
4242
.post('/profile', getProfile)
4343
)

0 commit comments

Comments
 (0)