We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6688670 commit f2acadcCopy full SHA for f2acadc
.github/workflows/ci.yml
@@ -59,7 +59,7 @@ jobs:
59
run: RUSTDOCFLAGS="-Dwarnings" ./miri doc --document-private-items
60
61
coverage:
62
- name: Coverage report
+ name: coverage report
63
runs-on: ubuntu-latest
64
steps:
65
- uses: actions/checkout@v4
miri-script/src/coverage.rs
@@ -50,7 +50,7 @@ impl CoverageReport {
50
/// show_coverage_report will print coverage information using the artifact
51
/// files in `self.path`.
52
pub fn show_coverage_report(&self, e: &MiriEnv) -> Result<()> {
53
- let profraw_files: Vec<_> = self.profraw_files()?;
+ let profraw_files = self.profraw_files()?;
54
55
let profdata_bin = path!(e.libdir / ".." / "bin" / "llvm-profdata");
56
0 commit comments