Skip to content

Commit d994933

Browse files
Minor fixes to Sentry Docs (#5357)
* Fix Kotlin sample, add include to ruby, enhance Ionic docs * Update src/platforms/javascript/guides/capacitor/ionic.mdx Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com> * Test * Fix link Co-authored-by: Isabel <76437239+imatwawana@users.noreply.github.com>
1 parent fde589e commit d994933

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

src/includes/enriching-events/set-transaction-name/android.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import io.sentry.Sentry
33

44
Sentry.configureScope { scope ->
5-
scope.setTransaction("UserListView"))
5+
scope.setTransaction("UserListView")
66
}
77
```
88

src/includes/enriching-events/set-transaction-name/ruby.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
```ruby
2+
require "sentry-ruby"
3+
24
Sentry.configure_scope do |scope|
35
scope.set_transaction_name("transaction")
46
end

src/includes/getting-started-config/javascript.capacitor.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,5 @@ Learn more about uploading [source maps](/platforms/javascript/guides/capacitor/
6060

6161
To make stack-trace information for native crashes on iOS easier to understand, you need to provide debug information to Sentry. Debug information is provided by uploading dSYM files using one of two methods, depending on your setup:
6262

63-
- [With Bitcode](dsym/#dsym-with-bitcode)
64-
- [Without Bitcode](dsym/#dsym-without-bitcode)
63+
- [With Bitcode](/platforms/javascript/guides/capacitor/dsym/#dsym-with-bitcode)
64+
- [Without Bitcode](/platforms/javascript/guides/capacitor/dsym/#dsym-without-bitcode)

src/platforms/javascript/guides/capacitor/ionic.mdx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,8 @@ sidebar_order: 201
44
description: "Learn how to use Sentry with Ionic."
55
---
66

7-
Sentry Capacitor supports [Ionic](https://ionicframework.com/), check the [Getting Started documentation](/platforms/javascript/guides/capacitor/) to setup your Ionic project with Sentry Capacitor SDK.
7+
Sentry Capacitor supports [Ionic](https://ionicframework.com/) out of the box. The documentation below is similar to our [Capacitor Getting Started documentation](/platforms/javascript/guides/capacitor/) since the setup of Capacitor and Ionic are the same.
8+
9+
<PlatformContent includePath="getting-started-install" />
10+
11+
<PlatformContent includePath="getting-started-config" />

0 commit comments

Comments
 (0)