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

Commit 99ec8fd

Browse files
fix incorrect tab indentation
1 parent 2d61cef commit 99ec8fd

File tree

13 files changed

+14
-14
lines changed

13 files changed

+14
-14
lines changed

docs/apis.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -840,8 +840,8 @@ import 'package:nitric_sdk/nitric.dart';
840840
import '../middlewares';
841841
842842
Future<HttpContext> getAllCustomers(HttpContext ctx) async {
843-
// gets the customers
844-
return ctx.next();
843+
// gets the customers
844+
return ctx.next();
845845
}
846846
847847
final customersApi = Nitric.api("customers");

docs/reference/dart/api/api-all.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
8888
8989
Future<HttpContext> handleCustomer(HttpContext ctx) async {
9090
// handle the request...
91-
return ctx.next();
91+
return ctx.next();
9292
}
9393
9494
// The validate middleware will run before the handleCustomer handler

docs/reference/dart/api/api-delete.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
9494
9595
Future<HttpContext> deleteCustomer(HttpContext ctx) async {
9696
// handle the DELETE request...
97-
return ctx.next();
97+
return ctx.next();
9898
}
9999
100100
// The validate middleware will run before the deleteCustomer handler

docs/reference/dart/api/api-get.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
9191
9292
Future<HttpContext> getCustomer(HttpContext ctx) async {
9393
// handle the GET request...
94-
return ctx.next();
94+
return ctx.next();
9595
}
9696
9797
// The validate middleware will run before the getCustomer handler

docs/reference/dart/api/api-patch.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
9191
9292
Future<HttpContext> udpateCustomer(HttpContext ctx) async {
9393
// handle the PATCH request...
94-
return ctx.next();
94+
return ctx.next();
9595
}
9696
9797
// The validate middleware will run before the updateCustomer handler

docs/reference/dart/api/api-post.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
9191
9292
Future<HttpContext> createCustomer(HttpContext ctx) async {
9393
// handle the POST request...
94-
return ctx.next();
94+
return ctx.next();
9595
}
9696
9797
// The validate middleware will run before the createCustomer handler

docs/reference/dart/api/api-put.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
9191
9292
Future<HttpContext> createOrUpdateCustomer(HttpContext ctx) async {
9393
// handle the UPDATE request...
94-
return ctx.next();
94+
return ctx.next();
9595
}
9696
9797
// The validate middleware will run before the createOrUpdateCustomer handler

docs/reference/dart/api/api-route-all.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
8787
8888
Future<HttpContext> handleCustomer(HttpContext ctx) async {
8989
// handle the request...
90-
return ctx.next();
90+
return ctx.next();
9191
}
9292
9393
// The validate middleware will run before all handlers that are created using this route

docs/reference/dart/api/api-route-delete.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
6868
6969
Future<HttpContext> deleteCustomer(HttpContext ctx) async {
7070
// handle the DELETE request...
71-
return ctx.next();
71+
return ctx.next();
7272
}
7373
7474
// The validate middleware will run before all handlers that are created using this route

docs/reference/dart/api/api-route-get.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ Future<HttpContext> validate(HttpContext ctx) async {
6868
6969
Future<HttpContext> getCustomer(HttpContext ctx) async {
7070
// handle the GET request...
71-
return ctx.next();
71+
return ctx.next();
7272
}
7373
7474
// The validate middleware will run before all handlers that are created using this route

0 commit comments

Comments
 (0)