Skip to content

Commit

Permalink
docs: mount_flags takes a slice of strings (#13087)
Browse files Browse the repository at this point in the history
The description of `mount_flags` provides incorrect example
of the accepted value format.

This fixes the issue by changing the example from a string
`ro,noatime` to a slice of strings `["ro", "noatime"]`.
  • Loading branch information
dasavick committed May 20, 2022
1 parent e0c2907 commit b181919
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/content/docs/commands/volume/register.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ context {
to whether these options are required or necessary.

- `fs_type`: file system type (ex. `"ext4"`)
- `mount_flags`: the flags passed to `mount` (ex. `"ro,noatime"`)
- `mount_flags`: the flags passed to `mount` (ex. `["ro", "noatime"]`)

- `topology_request` <code>([TopologyRequest](#topology_request-parameters): nil)</code> -
Specify locations (region, zone, rack, etc.) where the provisioned
Expand Down

0 comments on commit b181919

Please sign in to comment.