Skip to content

Commit 85227f1

Browse files
committed
Improve formatting
1 parent ae5b587 commit 85227f1

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

v2/advanced/progress-indicators.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Next, let's update the `start` event listener to start a new timeout that will s
211211

212212
```js
213213
router.on('start', () => {
214-
timeout = setTimeout(() => NProgress.start(), 250)
214+
timeout = setTimeout(() => NProgress.start(), 250)
215215
})
216216
```
217217

@@ -233,7 +233,7 @@ router.on('finish', (event) => {
233233
if (!NProgress.isStarted()) {
234234
return
235235
}
236-
// ...
236+
// ...
237237
})
238238
```
239239

v2/the-basics/pages.mdx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -94,12 +94,12 @@ use Inertia\Inertia;
9494

9595
class UserController extends Controller
9696
{
97-
public function show(User $user)
98-
{
99-
return Inertia::render('User/Show', [
100-
'user' => $user
101-
]);
102-
}
97+
public function show(User $user)
98+
{
99+
return Inertia::render('User/Show', [
100+
'user' => $user
101+
]);
102+
}
103103
}
104104
```
105105

0 commit comments

Comments
 (0)