Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit bfea125

Browse files
committed
review feedback applied
1 parent a8491bd commit bfea125

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/pages/concepts/infrastructure-from-code.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Sometimes it's easier to explain IfC by exploring the benefits.
2121

2222
## Rapid Development
2323

24-
Nitric significantly reduces or removes cloud-specific code. For example, accessing a file in a cloud storage bucket with nitric is just a few lines of code, while the equivalent code using cloud provider SDKs is much more verbose and error prone:
24+
Nitric significantly reduces or removes cloud-specific code. For example, accessing a file in a cloud storage bucket with Nitric is just a few lines of code, while the equivalent code using cloud provider SDKs is much more verbose and error prone:
2525

2626
<CodeGroup>
2727

@@ -100,7 +100,7 @@ provider: your_namespace/[email protected]
100100
101101
<Note>
102102
The runtime code for cloud services like SNS still exists, it's just isolated
103-
to an independent module. It could be from a [nitric
103+
to an independent module. It could be from a [Nitric
104104
provider](https://github.com/nitrictech/nitric/blob/main/cloud/aws/runtime/topic/sns.go)
105105
or [something custom](/reference/providers/custom/building-custom-provider)
106106
built by you or an independent team, such as platform engineers or DevOps

src/pages/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ services:
4141
start: npm run dev:services $SERVICE_PATH
4242
```
4343
44-
You might have one service that handles everything, or a service for each route. It's up to you. Every matched services becomes a container, so you can scale them independently.
44+
You might have one service that handles everything, or a service for each route. It's up to you. Every matched service becomes a container, allowing them run and scale independently.
4545
4646
---
4747
@@ -173,8 +173,8 @@ So, a project structure might look something like this:
173173
example/
174174
├── nitric.yaml
175175
├── services/
176-
│ └── orders.ts
177-
│ └── users.ts
176+
│ └── orders.js
177+
│ └── users.js
178178
└── package.json
179179
```
180180

0 commit comments

Comments
 (0)