guix: Fix typo in docstring.

* guix/build/syscalls.scm (device-in-use?)<docstring>: Fix typo.
master
Tobias Geerinckx-Rice 2019-04-30 13:56:29 +02:00
parent eea094ccdc
commit 88401314f9
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 1 additions and 1 deletions

View File

@ -692,7 +692,7 @@ mounted at FILE."
(define* (device-in-use? device)
"Return #t if the block DEVICE is in use, #f otherwise. This is inspired
from fdisk_device_is_used function of util-linux. This is particulary useful
from fdisk_device_is_used function of util-linux. This is particularly useful
for devices that do not appear in /proc/self/mounts like overlayfs lowerdir
backend device."
(let*-values (((fd) (open-fdes device O_RDONLY))