Skip to content

Commit d0386a1

Browse files
committed
Respond to linting errors
1 parent 69850fa commit d0386a1

5 files changed

Lines changed: 18 additions & 15 deletions

File tree

content/en/docs/appstore/create-content/create-solutions/implement-solutions/sol-upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ To upgrade a solution, follow these steps:
3333

3434
{{< figure src="/attachments/appstore/create-content/implement-solutions/solution-upgrade.png" alt="Upgrade Solution" class="no-border" >}}
3535

36-
{{% alert color="info" %}}In Studio Pro 9 and below, this option must be enabled by setting a feature flag. Since Studio Pro 10, it is available for general use and no longer hidden behind a flag.{{% /alert %}}
36+
{{% alert color="info" %}}In Studio Pro 9 and below, this option must be enabled by setting a feature flag. Since Studio Pro 10, it is available for general use and no longer hidden behind a flag.{{% /alert %}}
3737

3838
2. Select the solution package file (*.mxsolution*) provided by the ISV and click **OK**.
3939
3. Once solution upgrade is completed, a new commit to the **solution-releases** branch line is created. This commit contains the unchanged new version of the solution (as provided by the ISV). You cannot make any changes in this branch, as that would render the solution incompatible with upgrades or lead to unpredictable errors during upgrades.

content/en/docs/appstore/use-content/platform-supported-content/modules/genai/snowflake-cortex.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@ The [Snowflake showcase app](https://marketplace.mendix.com/link/component/22584
5151

5252
This section contains the following pages:
5353

54-
1. Introduction
55-
2. ANOMALY DETECTION (Machine Learning)
56-
3. COMPLETE and TRANSLATE (Large Language Models)
57-
4. Analyst (Cortex Analyst)
54+
1. Introduction
55+
2. ANOMALY DETECTION (Machine Learning)
56+
3. COMPLETE and TRANSLATE (Large Language Models)
57+
4. Analyst (Cortex Analyst)
5858

5959
3. To see how a Snowflake function is called, right-click on the corresponding **SQLStatement** field, and then click **Go to data source microflow**.
6060

content/en/docs/refguide/mobile/distributing-mobile-apps/building-native-apps/bitrise.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ To set up your build project, do the following:
5353
* Project or Workspace path: `ios/NativeTempalte.xcworkspace`
5454
* Scheme name: `nativeTemplate`
5555
* Distribution method: [Choose the distribution method you want to use](https://developer.apple.com/videos/play/wwdc2019/304/)
56-
* Build stack: Choose the altest Xcode version compatible with your Mendix version
56+
* Build stack: Choose the latest Xcode version compatible with your Mendix version
5757
1. Finish creating the project.
5858
1. Abort the build if one starts automatically (you first need to setup code signing and adjust the workflow).
5959

@@ -90,7 +90,7 @@ Add a missing npm command by doing the following:
9090

9191
By default, Bitrise targets both Android and iOS. If you do not need to build for both operating systems (OS), remove all actions related to that OS and skip all steps below related to it as well.
9292

93-
For example, if you only target iOS, you can remove the actions **Install missing Androide SDK components** and **Android Build**. This will significantly speed up your builds and save credits.
93+
For example, if you only target iOS, you can remove the actions **Install missing Android SDK components** and **Android Build**. This will significantly speed up your builds and save credits.
9494

9595
### Add Android Code Signing (Android only)
9696

content/en/docs/refguide/runtime/monitoring-mendix-runtime.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -536,19 +536,21 @@ Returns feedback about the Mendix Runtime.
536536

537537
## Logging
538538

539-
Log subscriber is what renders logs. By changing log subscribers it is possible to configure the logs format.
540-
For that you need to make three steps:
539+
A log subscriber renders logs. By changing log subscribers it is possible to configure the log format.
540+
For that you need to do three things:
541541

542542
1. Get the name of your current log subscriber
543543
2. Delete your current log subscriber
544544
3. Create new log subscriber
545545

546-
### Request to get the name of your current log subscriber
546+
### Request to Get the Name of Your Current Log Subscriber
547547

548548
```json
549549
{"action": "get_log_settings", "params": {"sort": "subscriber"}}
550550
```
551551

552+
[//]: # (<!-- markdownlint-disable no-duplicate-heading -->)
553+
552554
### Example Response
553555

554556
```json
@@ -569,7 +571,7 @@ For that you need to make three steps:
569571

570572
If the `feedback` is not empty use the name of your current log subscriber in the next request. In this example the name is `"ConsoleLogSubscriber"`.
571573

572-
### Request to delete your current log subscriber
574+
### Request to Delete Your Current Log Subscriber
573575

574576
```json
575577
{"action": "remove_log_subscriber", "params": {"name": "ConsoleLogSubscriber"}}
@@ -586,7 +588,7 @@ If the `feedback` is not empty use the name of your current log subscriber in th
586588

587589
It is possible to have multiple log subscribers running simultaneously, if several log subscribers were created then each of them will be writing the same log lines.
588590

589-
### Request to create new log subscriber in Json format
591+
### Request to Create New Log Subscriber in Json Format
590592

591593
```json
592594
{
@@ -620,7 +622,7 @@ This configuration will produce logs similar to these:
620622
{"node":"Core","level":"INFO","ddtags":"env:test","service":"my-application-name","message":"Mendix Runtime is now shut down.","timestamp":1734629114260}
621623
```
622624

623-
### Request to create new log subscriber in simple text format
625+
### Request to Create New Log Subscriber in Simple Text Format
624626

625627
```json
626628
{
@@ -643,3 +645,5 @@ This configuration will produce logs similar to these:
643645
```
644646

645647
This will write logs to standard output in simple text format.
648+
649+
[//]: # (<!-- markdownlint-enable no-duplicate-heading -->)

content/en/docs/refguide/runtime/tracing-in-runtime.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,7 @@ Below we list the supported tracing-related runtime settings. See [Configure the
4444

4545
| Name | Description | Default |
4646
|------|-------------|---------|
47-
| `OpenTelemetry.Enabled` | Can be set to `true` or `false` in order to disable or enable tracing.<br/> {{% alert color="info" %}}
48-
We support dynamically enabling/disabling tracing using this setting, but the other settings will only be applied the first time you enable tracing.{{% /alert %}} | `false` |
47+
| `OpenTelemetry.Enabled` | Can be set to `true` or `false` in order to disable or enable tracing.<br/> {{% alert color="info" %}} We support dynamically enabling/disabling tracing using this setting, but the other settings will only be applied the first time you enable tracing.{{% /alert %}} | `false` |
4948
| `otel.service.name` | The name of the service. | `unknown_service:java` |
5049
| `otel.resource.attributes` | The resource attributes to include in every span. Example: `attribute1=value1,attribute2=value2` | |
5150
| `otel.traces.exporter` | Comma-separated list of span exporters. Supported values are: `otlp`, `console`, `logging-otlp`, and `none`. | `otlp` |

0 commit comments

Comments
 (0)