Skip to content

Commit 7ca90bc

Browse files
authored
Merge pull request #174 from algonell/main
Fix typos
2 parents ee3f58a + 76abbbc commit 7ca90bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ Additional resources
519519

520520
- [LWN: Faster kernel testing with virtme-ng (November, 2023)](https://lwn.net/Articles/951313/)
521521
- [LPC 2023: Speeding up Kernel Testing and Debugging with virtme-ng](https://lpc.events/event/17/contributions/1506/attachments/1143/2441/virtme-ng.pdf)
522-
- [Kernel Recipies 2024: virtme-ng](https://kernel-recipes.org/en/2024/virtme-ng/)
522+
- [Kernel Recipes 2024: virtme-ng](https://kernel-recipes.org/en/2024/virtme-ng/)
523523

524524
Credits
525525
=======

virtme/commands/run.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -402,7 +402,7 @@ def get_kernel_version(img_name, path):
402402
return kernel_version
403403

404404
# The version detection fails s390x using file or strings tools, so check
405-
# if the file itself contins the version number.
405+
# if the file itself contains the version number.
406406
if img_name:
407407
match = re.search(fr"{img_name}-(\S{{3,}})", path)
408408
if match:
@@ -586,7 +586,7 @@ def _cleanup_virtiofs_temp_files(self):
586586
def _get_virtiofsd_path(self):
587587
# Define the possible virtiofsd paths.
588588
#
589-
# NOTE: do not use the C implemention of qemu's virtiofsd, because it
589+
# NOTE: do not use the C implementation of qemu's virtiofsd, because it
590590
# doesn't support unprivileged-mode execution and it would be totally
591591
# unsafe to export the whole rootfs of the host running as root.
592592
#

0 commit comments

Comments
 (0)