Skip to content

Commit 0572e24

Browse files
authored
fix: typos in _index.md (#1293)
Signed-off-by: Joe Bowbeer <joe.bowbeer@gmail.com>
1 parent 02733dc commit 0572e24

File tree

1 file changed

+3
-3
lines changed
  • daprdocs/content/en/java-sdk-docs/spring-boot

1 file changed

+3
-3
lines changed

daprdocs/content/en/java-sdk-docs/spring-boot/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,10 +67,10 @@ public class DemoRestController {
6767
record Order(String orderId, Integer amount){}
6868
```
6969

70-
If you want to avoid managing Dapr outside of your Spring Boot application, you can rely on [Testcontainers](https://testcontainers.com/) to bootstrap Dapr besides your application for development purposes.
70+
If you want to avoid managing Dapr outside of your Spring Boot application, you can rely on [Testcontainers](https://testcontainers.com/) to bootstrap Dapr beside your application for development purposes.
7171
To do this we can create a test configuration that uses `Testcontainers` to bootstrap all we need to develop our applications using the Dapr APIs.
7272

73-
Using [Testcontaniners](https://testcontainers.com/) and Dapr integrations, we let the `@TestConfiguration` to bootstrap Dapr for our applications.
73+
Using [Testcontainers](https://testcontainers.com/) and Dapr integrations, we let the `@TestConfiguration` bootstrap Dapr for our applications.
7474
Notice that for this example, we are configuring Dapr with a Statestore component called `kvstore` that connects to an instance of `PostgreSQL` also bootstrapped by Testcontainers.
7575

7676
```java
@@ -170,7 +170,7 @@ Where `OrderRepository` is defined in an interface that extends the Spring Data
170170
public interface OrderRepository extends CrudRepository<Order, String> {}
171171
```
172172

173-
Notice that the `@EnableDaprRepositories` annotation, does all the magic of wiring the Dapr APIs under the `CrudRespository` interface.
173+
Notice that the `@EnableDaprRepositories` annotation does all the magic of wiring the Dapr APIs under the `CrudRespository` interface.
174174
Because Dapr allow users to interact with different StateStores from the same application, as a user you need to provide the following beans as a Spring Boot `@Configuration`:
175175

176176
```java

0 commit comments

Comments
 (0)