Skip to content

Commit 40cebfb

Browse files
Updated MDX files to make all titles sentence case (#709)
1 parent 23af1fa commit 40cebfb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+82
-82
lines changed

src/routes/advanced-concepts/fine-grained-reactivity.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Fine-Grained Reactivity
2+
title: Fine-grained reactivity
33
---
44

55
Reactivity ensures automatic responses to data changes, eliminating the need for manual updates to the user interface (UI).
@@ -15,7 +15,7 @@ Through targeting only the areas of an application that have changed the user ex
1515

1616
**Note:** If you're new to the concept of reactivity and want to learn the basics, consider starting with our [intro to reactivity guide](/concepts/intro-to-reactivity).
1717

18-
## Reactive Primitives
18+
## Reactive primitives
1919

2020
In Solid's reactivity system, there are two key elements: signals and observers.
2121
These core elements serve as the foundation for more specialized reactive features:

src/routes/concepts/components/basics.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ To simplify conditional rendering, Solid provides built-in [control-flow](/conce
176176
For components to be reusable, they need to be exported from one module and imported into another.
177177
This allows for components to be shared and used where needed.
178178

179-
### Exporting Components
179+
### Exporting components
180180

181181
Once defined, a component can be [exported](https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export) to make it available for use in other parts of your application.
182182
There are two ways to export a component: [named exports](https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export#named_exports) and [default exports](https://developer.mozilla.org/en-US/docs/web/javascript/reference/statements/export#default_exports).
@@ -212,7 +212,7 @@ export default function MyComponent() {
212212
}
213213
```
214214

215-
### Importing Components
215+
### Importing components
216216

217217
To use a component in another file or component, it must be [imported](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Statements/import).
218218
To import a component, you must specify the path to the file containing the component and the name of the component to import.

src/routes/concepts/components/class-style.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Class and Style
2+
title: Class and style
33
order: 2
44
---
55

66
Similar to HTML, Solid uses `class` and `style` attributes to style elements via [CSS (Cascading Style Sheets)](https://developer.mozilla.org/en-US/docs/Glossary/CSS).
77

8-
- **Class Attribute**: Enables styling one or more elements through CSS rules.
9-
- **Style Attribute**: Inline styles that style single elements.
8+
- **Class attribute**: Enables styling one or more elements through CSS rules.
9+
- **Style attribute**: Inline styles that style single elements.
1010

1111
## Inline styling
1212

src/routes/concepts/components/event-handlers.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Event Handlers
2+
title: Event handlers
33
order: 3
44
---
55

@@ -58,7 +58,7 @@ In this example, the `Hello!` string is passed as the `data` parameter in the `h
5858

5959
By binding events in this way, Solid avoids the overhead of using JavaScript's [bind](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_objects/Function/bind) method and adding an additional closure.
6060

61-
### Dynamic Handlers
61+
### Dynamic handlers
6262

6363
An event handler does not form part of the reactive system.
6464
If you were to pass the handler as a signal, it will not respond to the changes of that signal.
@@ -190,7 +190,7 @@ button
190190

191191
</Callout>
192192

193-
### List of Delegated Events
193+
### List of delegated events
194194

195195
You can also view this list in our [source code](https://github.com/ryansolid/dom-expressions/blob/main/packages/dom-expressions/src/constants.js) (see `DelegatedEvents`).
196196

src/routes/concepts/control-flow/conditional-rendering.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Conditional Rendering"
2+
title: "Conditional rendering"
33
order: 1
44
---
55

src/routes/concepts/control-flow/list-rendering.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "List Rendering"
2+
title: "List rendering"
33
order: 3
44
---
55

src/routes/concepts/intro-to-reactivity.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: "Intro to Reactivity"
2+
title: "Intro to reactivity"
33
order: 1
44
---
55

src/routes/configuration/environment-variables.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Environment Variables
2+
title: Environment variables
33
---
44

55
Solid is built on top of [Vite](https://vitejs.dev/), which offers a convenient way to handle environment variables.

src/routes/guides/complex-state-management.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Complex State Management
2+
title: Complex state management
33
order: 5
44
---
55

src/routes/guides/deploying-your-app.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Deploying your App
2+
title: Deploying your app
33
order: 6
44
---
55

0 commit comments

Comments
 (0)