diff --git a/CHANGELOG.md b/CHANGELOG.md index 13e0a585..7b001e04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## Unreleased -- Add callback to handle skipped files ([#864](https://github.com/getsentry/symbolic/pull/864)) +- Add callback to `symbolic::debuginfo::sourcebundle::SourceBundleWriter` which handles files skipped while writing to the source bundle. ([#864](https://github.com/getsentry/symbolic/pull/864)) ## 12.10.1 diff --git a/symbolic-debuginfo/src/sourcebundle.rs b/symbolic-debuginfo/src/sourcebundle.rs index 07a30bc5..4ab5d05a 100644 --- a/symbolic-debuginfo/src/sourcebundle.rs +++ b/symbolic-debuginfo/src/sourcebundle.rs @@ -1048,7 +1048,7 @@ impl<'a> SkippedFileInfo<'a> { Self { path, reason } } - /// Get the path of the skipped file + /// Returns the path of the skipped file. pub fn path(&self) -> &str { self.path }