Skip to content

Commit

Permalink
Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
bamx23 committed Aug 26, 2024
1 parent 0d74115 commit 9cd2d58
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,11 @@ For more information, see Apple's documentation on [Disk space APIs](https://dev
### Optional Demangling
KSCrash has an optional module that brings demangling for both C++ and Swift symbols: `DemangleFilter`. This module contains a KSCrash filter (`CrashReportFilterDemangle`) that can be used for demangling symbols in crash reports during the `sendAllReports` call *(if this filter is added to the filters pipeline)*.
KSCrash has an optional module that provides demangling for both C++ and Swift symbols: `DemangleFilter`. This module contains a KSCrash filter (`CrashReportFilterDemangle`) that can be used for demangling symbols in crash reports during the `sendAllReports` call *(if this filter is added to the filters pipeline)*.
This module is used automatically if you use `Installations` API. If you want to avoid demangling you can set `isDemangleEnabled` in `CrashInstallation` instance to `false`.
This module is used automatically if you use the `Installations` API. If you want to avoid demangling, you can set `isDemangleEnabled` in the `CrashInstallation` instance to `false`.
If you don't use `Installations` API you can include this module manually:
If you don't use the `Installations` API, you can include this module manually:

- With CocoaPods:
```ruby
Expand All @@ -217,7 +217,7 @@ If you don't use `Installations` API you can include this module manually:
.product(name: "DemangleFilter", package: "KSCrash"),
```

The `CrashReportFilterDemangle` class also has static API that you can use youself in case you need to demangle a C++ or a Swift symbol.
The `CrashReportFilterDemangle` class also has a static API that you can use yourself in case you need to demangle a C++ or Swift symbol.

## What's New?

Expand Down

0 comments on commit 9cd2d58

Please sign in to comment.