Skip to content

Commit 95dba38

Browse files
committed
🐛 Error in FlamaName component
1 parent 86aabfd commit 95dba38

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

content/docs/3-Fundamentals/2-Middlewares.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,8 @@ app = Flama(
104104
)
105105
```
106106

107-
\<FlamaName /\> will wrap these middleware components around your application in the order they are provided. The first middleware in the list will be the outermost, processing the request first and the response last.
107+
<FlamaName /> will wrap these middleware components around your application in the order they are provided. The first
108+
middleware in the list will be the outermost, processing the request first and the response last.
108109

109110
## Example
110111

content/docs/3-Fundamentals/3-Modules.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,4 +285,4 @@ This **I18nModule** example effectively shows:
285285
- How a module can initialise and provide an application-wide service (the **I18nService**)
286286
- Routes can then easily access this service through the registered module instance on the **app** object (e.g., `app.i18n`) to perform tasks like translating text based on language preferences.
287287
- The example also includes fallback mechanisms for missing translations and demonstrates how the module itself can offer convenient wrapper methods (like **I18nModule.translate()**)
288-
- The commented-out lines in the **on_startup()** method further hint at how such a module could register **Components** to make its services available through <FlamaName \>'s dependency injection, further enhancing decoupling and testability, which is a key aspect of <FlamaName />'s power and extensibility
288+
- The commented-out lines in the **on_startup()** method further hint at how such a module could register **Components** to make its services available through <FlamaName />'s dependency injection, further enhancing decoupling and testability, which is a key aspect of <FlamaName />'s power and extensibility

0 commit comments

Comments
 (0)