Skip to content

Commit b0810c8

Browse files
committed
Fix typo "the the" -> "the"
1 parent e19380c commit b0810c8

File tree

12 files changed

+12
-12
lines changed

12 files changed

+12
-12
lines changed

develop-docs/sdk/telemetry/sessions/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -517,7 +517,7 @@ Sessions should be enabled by default, a session is started as soon as a request
517517
#### Lifetime of a Session
518518

519519
Sessions are never tracked nor sent individually, instead they are aggregated and the aggregates are sent every 30s and a final time when the web server is terminating.
520-
As an implementation hint to the point above, when a "Client" is closed or flushed the associated "Session Flusher" shall also be flushed and submit the current aggregates the the transport, before the transport is flushed/closed.
520+
As an implementation hint to the point above, when a "Client" is closed or flushed the associated "Session Flusher" shall also be flushed and submit the current aggregates the transport, before the transport is flushed/closed.
521521
Make sure this works reasonably for Serverless — there we shall not use "request mode" and SessionFlusher because we cannot have any work that happens outside of the request-response flow.
522522
Provide an easy way to integrate with existing Node frameworks (Express, Next.js, Koa).
523523

docs/concepts/search/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ Also, the queries prioritize `AND` before `OR`. For example, "x `AND` y `OR` z"
7878

7979
### Multiple Values on the Same Key
8080

81-
You can search multiple values for the same key by putting the values in a list. For example, "x:[value1, value2]" will find the the same results as "x:value1 `OR` x:value2". When you do this, the search returns issues/events that match any search term.
81+
You can search multiple values for the same key by putting the values in a list. For example, "x:[value1, value2]" will find the same results as "x:value1 `OR` x:value2". When you do this, the search returns issues/events that match any search term.
8282

8383
An example of searching on the same key with a list of values:
8484

docs/concepts/search/searchable-properties/events.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ The "package" the frame was contained in. Depending on the platform, this can be
637637

638638
### `sum(numeric field)`
639639

640-
Returns results with a matching total value for the the field entered.
640+
Returns results with a matching total value for the field entered.
641641

642642
- **Type:** matches field
643643

docs/platforms/android/migration/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ SentryOptions#addEventProcessor(object : EventProcessor {
442442
})
443443
```
444444

445-
A random generated `installationId` replaces `Settings.Secure.ANDROID_ID`, which has been removed. This may affect the number of unique users displayed on the the Issues page and Alerts.
445+
A random generated `installationId` replaces `Settings.Secure.ANDROID_ID`, which has been removed. This may affect the number of unique users displayed on the Issues page and Alerts.
446446
If you always set a custom user using `Sentry.setUser(customUser)`, the behavior has not changed. While you don't have to make any update, if you want to maintain the old behavior, use the following code snippet:
447447

448448
```java

docs/platforms/dart/guides/flutter/migration.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ There are no Flutter specific breaking changes. However there are some in [sentr
4242

4343
You may remove `android:extractNativeLibs="true"` meta-data in the `AndroidManifest` file or `android.bundle.enableUncompressedNativeLibs=false` in the `gradle.properties` file if you're using the [Android Native Development Kit](/platforms/android/configuration/using-ndk/). Sentry can now symbolicate events with the default value of [extractNativeLibs](https://developer.android.com/studio/releases/gradle-plugin#extractNativeLibs) and [android.bundle.enableUncompressedNativeLibs](https://developer.android.com/studio/releases/gradle-plugin#behavior-changes).
4444

45-
A random generated installationId replaces [Settings.Secure.ANDROID_ID](https://developer.android.com/reference/android/provider/Settings.Secure#ANDROID_ID), which has been removed. This may affect the number of unique users displayed on the the Issues page and Alerts. If you always set a custom user using Sentry.setUser(customUser), the behavior has not changed. While you don't have to make any update, if you want to maintain the old behavior, use the following code snippet.
45+
A random generated installationId replaces [Settings.Secure.ANDROID_ID](https://developer.android.com/reference/android/provider/Settings.Secure#ANDROID_ID), which has been removed. This may affect the number of unique users displayed on the Issues page and Alerts. If you always set a custom user using Sentry.setUser(customUser), the behavior has not changed. While you don't have to make any update, if you want to maintain the old behavior, use the following code snippet.
4646
It makes use of the [device_info_plus](https://pub.dev/packages/device_info_plus) plugin:
4747

4848

docs/platforms/java/common/maven/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Using Maven in your application module's `pom.xml` add:
3838

3939
### Configure
4040

41-
We expose the following configuration values, by adding a `<configuration>` section to the the plugin in `pom.xml`:
41+
We expose the following configuration values, by adding a `<configuration>` section to the plugin in `pom.xml`:
4242

4343
```xml
4444
<project>

docs/platforms/javascript/common/configuration/options.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ Options used to configure the transport. This is an object with the following po
213213
- `headers`: An object containing headers to be sent with every request.
214214
- `proxy`: A proxy used for outbound requests. Can be http or https.
215215
- `caCerts`: A path or list of paths to a CA certificate, or a buffer of CA certificates.
216-
- `httpModule`: A custom HTTP module to use for requests. Defaults to the the native `http` and `https` modules.
216+
- `httpModule`: A custom HTTP module to use for requests. Defaults to the native `http` and `https` modules.
217217
- `keepAlive`: Determines whether to keep the socket alive between requests. Defaults to `false`.
218218

219219
</PlatformCategorySection>

docs/platforms/javascript/common/session-replay/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Sentry.replayCanvasIntegration({
9191
```
9292

9393
**Step 2**
94-
Call the the following `snapshot()` method inside your application's paint loop. `snapshot()` needs to be called in the same execution loop as the canvas draw commands, otherwise you may be snapshotting empty canvas buffers. This is due to how WebGL works when `preserveDrawingBuffer` is `false`.
94+
Call the following `snapshot()` method inside your application's paint loop. `snapshot()` needs to be called in the same execution loop as the canvas draw commands, otherwise you may be snapshotting empty canvas buffers. This is due to how WebGL works when `preserveDrawingBuffer` is `false`.
9595

9696
```javascript
9797
function paint() {

docs/platforms/react-native/migration/before-v5.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ The breaking changes are relevant only to Android. There are no breaking changes
131131

132132
Sentry React Native version `2.5.0` depends on Sentry Android `5.0.0`. Please [refer to the Android migration guide for Android-specific changes](/platforms/android/migration/#migrating-from-iosentrysentry-android-430-to-iosentrysentry-android-500).
133133

134-
`Settings.Secure.ANDROID_ID` has been removed and replaced with a randomly-generated `installationId`. This may affect the number of unique users displayed on the the Issues page and Alerts. If you've always set a custom user using `Sentry.setUser(customUser)`, the behavior hasn't changed. While you don't have to make any updates, if you want to maintain the old behavior, use the following code snippet which makes use of the [react-native-device-info](https://github.com/react-native-device-info/react-native-device-info) library.
134+
`Settings.Secure.ANDROID_ID` has been removed and replaced with a randomly-generated `installationId`. This may affect the number of unique users displayed on the Issues page and Alerts. If you've always set a custom user using `Sentry.setUser(customUser)`, the behavior hasn't changed. While you don't have to make any updates, if you want to maintain the old behavior, use the following code snippet which makes use of the [react-native-device-info](https://github.com/react-native-device-info/react-native-device-info) library.
135135

136136
```javascript
137137
import { Platform } from "react-native";

docs/product/explore/discover-queries/query-builder/query-equations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ Get the percentage of transactions that completed within a threshold
103103

104104
### Calculate a custom Apdex
105105

106-
[Apdex](/product/insights/overview/metrics/#apdex) is defined as `(satisfied + tolerable*0.5 + frustrated*0)/total`. If you wanted to change the the weight of tolerable to 0.2, you would create the following query and equation.
106+
[Apdex](/product/insights/overview/metrics/#apdex) is defined as `(satisfied + tolerable*0.5 + frustrated*0)/total`. If you wanted to change the weight of tolerable to 0.2, you would create the following query and equation.
107107

108108
1. Create a new query with the following four columns:
109109
- Column 1:

0 commit comments

Comments
 (0)