Skip to content

Commit f99c0da

Browse files
authored
Update 03-show-order-status.md (#261)
Small text change.
1 parent 1d5ff7d commit f99c0da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/03-show-order-status.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ Asynchronous work when applying parameters and property values must occur during
142142

143143
### 5. How can I reset the database?
144144

145-
If you want to reset your database to see the "no orders" case, simply delete `pizza.db` from the Server project and reload the page in your browser.
145+
If you want to reset your database to see the "no orders" case, simply delete `pizza.db` from the **BlazingPizza.Server** project and reload the page in your browser.
146146

147147
![My orders empty list](https://user-images.githubusercontent.com/1874516/77241390-a4b49100-6bae-11ea-8dd4-e59afdd8f710.png)
148148

@@ -199,7 +199,7 @@ Once again we'll add a component to handle this. In the `Pages` directory, creat
199199
}
200200
```
201201

202-
This code illustrates how components can receive parameters from the router by declaring them as tokens in the `@page` directive. If you want to receive a `string`, the syntax is simply `{parameterName}`, which matches a `[Parameter]` name case-insensitively. If you want to receive a numeric value, the syntax is `{parameterName:int}`, as in the example above. The `:int` is an example of a *route constraint*. Other route constraints are supported too.
202+
This code illustrates how components can receive parameters from the router by declaring them as tokens in the `@page` directive. If you want to receive a `string`, the syntax is simply `{parameterName}`, which matches a `[Parameter]` name case-insensitively. If you want to receive a numeric value, the syntax is `{parameterName:int}`, as in the example above. The `:int` is an example of a *route constraint*. Other route constraints, such as bool, datetime and guid, are also supported.
203203

204204
![Order details empty](https://user-images.githubusercontent.com/1874516/77241434-391ef380-6baf-11ea-9803-9e7e65a4ea2b.png)
205205

0 commit comments

Comments
 (0)