We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 926197a + fefa9df commit 009f977Copy full SHA for 009f977
2 files changed
.github/workflows/gh-pages.yml
@@ -24,7 +24,7 @@ jobs:
24
- name: Build Documentation
25
run: cargo doc --all-features
26
- name: Deploy Documentation
27
- uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
+ uses: peaceiris/actions-gh-pages@84c30a85c19949d7eee79c4ff27748b70285e453 # v4.1.0
28
with:
29
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
30
publish_branch: gh-pages
src/runtime/linux.rs
@@ -333,10 +333,10 @@ impl Display for LinuxDeviceCgroup {
333
write!(
334
f,
335
"{} {}:{} {}",
336
- &self.typ.unwrap_or_default().as_str(),
337
- &major,
338
- &minor,
339
- &access
+ self.typ.unwrap_or_default().as_str(),
+ major,
+ minor,
+ access
340
)
341
}
342
0 commit comments