Fix floppy doc markdown typo (#8458)

This commit is contained in:
Sylvia Moss 2019-12-06 14:12:11 +01:00 committed by Adrien Delorme
parent 2f63c581a0
commit 096cab9b48
2 changed files with 4 additions and 4 deletions

View File

@ -22,7 +22,7 @@ import (
type FloppyConfig struct { type FloppyConfig struct {
// A list of files to place onto a floppy disk that is attached when the VM // A list of files to place onto a floppy disk that is attached when the VM
// is booted. Currently, no support exists for creating sub-directories on // is booted. Currently, no support exists for creating sub-directories on
// the floppy. Wildcard characters (\*, ?, and \[\]) are allowed. Directory // the floppy. Wildcard characters (\\*, ?, and \[\]) are allowed. Directory
// names are also allowed, which will add all the files found in the // names are also allowed, which will add all the files found in the
// directory to the floppy. // directory to the floppy.
FloppyFiles []string `mapstructure:"floppy_files"` FloppyFiles []string `mapstructure:"floppy_files"`
@ -30,7 +30,7 @@ type FloppyConfig struct {
// similar to the `floppy_files` option except that the directory structure // similar to the `floppy_files` option except that the directory structure
// is preserved. This is useful for when your floppy disk includes drivers // is preserved. This is useful for when your floppy disk includes drivers
// or if you just want to organize it's contents as a hierarchy. Wildcard // or if you just want to organize it's contents as a hierarchy. Wildcard
// characters (\*, ?, and \[\]) are allowed. The maximum summary size of // characters (\\*, ?, and \[\]) are allowed. The maximum summary size of
// all files in the listed directories are the same as in `floppy_files`. // all files in the listed directories are the same as in `floppy_files`.
FloppyDirectories []string `mapstructure:"floppy_dirs"` FloppyDirectories []string `mapstructure:"floppy_dirs"`
FloppyLabel string `mapstructure:"floppy_label"` FloppyLabel string `mapstructure:"floppy_label"`

View File

@ -2,7 +2,7 @@
- `floppy_files` ([]string) - A list of files to place onto a floppy disk that is attached when the VM - `floppy_files` ([]string) - A list of files to place onto a floppy disk that is attached when the VM
is booted. Currently, no support exists for creating sub-directories on is booted. Currently, no support exists for creating sub-directories on
the floppy. Wildcard characters (\*, ?, and \[\]) are allowed. Directory the floppy. Wildcard characters (\\*, ?, and \[\]) are allowed. Directory
names are also allowed, which will add all the files found in the names are also allowed, which will add all the files found in the
directory to the floppy. directory to the floppy.
@ -10,7 +10,7 @@
similar to the `floppy_files` option except that the directory structure similar to the `floppy_files` option except that the directory structure
is preserved. This is useful for when your floppy disk includes drivers is preserved. This is useful for when your floppy disk includes drivers
or if you just want to organize it's contents as a hierarchy. Wildcard or if you just want to organize it's contents as a hierarchy. Wildcard
characters (\*, ?, and \[\]) are allowed. The maximum summary size of characters (\\*, ?, and \[\]) are allowed. The maximum summary size of
all files in the listed directories are the same as in `floppy_files`. all files in the listed directories are the same as in `floppy_files`.
- `floppy_label` (string) - Floppy Label - `floppy_label` (string) - Floppy Label