Skip to content

Commit 7e939c0

Browse files
committed
chore: add highlighting for technical terms
1 parent 79be8c2 commit 7e939c0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/platforms/native/configuration/transports.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ background thread or thread pool to avoid blocking execution.
5151
5252
## Using a Proxy
5353
54-
The Native SDK allows the configuration of an HTTP (CONNECT) or SOCKS5 proxy through which requests can be tunneled to our backend. It can be configured via the following option interface:
54+
The Native SDK allows the configuration of an `HTTP` (`CONNECT`) or `SOCKS5` proxy through which requests can be tunneled to our backend. It can be configured via the following option interface:
5555
5656
```c
5757
sentry_options_t *options = sentry_options_new();
@@ -60,7 +60,7 @@ sentry_init(options);
6060
6161
/* ... */
6262
```
63-
The same function can also be used for the SOCKS5 proxy:
63+
The same function can also be used for the `SOCKS5` proxy:
6464
```c
6565
sentry_options_t *options = sentry_options_new();
6666
sentry_options_set_proxy(options, "socks5://my.proxy:1080");
@@ -70,7 +70,7 @@ sentry_init(options);
7070
```
7171
7272
73-
We support HTTP proxies on all platforms, and SOCKS5 proxies on Linux and macOS. Depending on the platform, the transport provides a fallback in case the proxy is not reachabled. The following table shows the expected behaviour.
73+
We support `HTTP` proxies on all platforms, and `SOCKS5` proxies on Linux and macOS. Depending on the platform, the transport provides a fallback in case the proxy is not reachabled. The following table shows the expected behaviour.
7474
7575
| Platform | http-proxy | socks-proxy |
7676
|----------|-----------------------------------------------------|------------------------------------------------------|

0 commit comments

Comments
 (0)