Skip to content

Commit 8e00c3f

Browse files
author
Mrunal Patel
committed
Merge pull request opencontainers#196 from runcom/fix-typo-namespaces
runtime: config: linux: Remove trailing comma in namespaces json example
2 parents 7a05004 + 75cb11c commit 8e00c3f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

runtime-config-linux.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,17 @@ Also, when a path is specified, a runtime MUST assume that the setup for that pa
2020
"path": "/var/run/netns/neta"
2121
},
2222
{
23-
"type": "mount",
23+
"type": "mount"
2424
},
2525
{
26-
"type": "ipc",
26+
"type": "ipc"
2727
},
2828
{
29-
"type": "uts",
29+
"type": "uts"
3030
},
3131
{
32-
"type": "user",
33-
},
32+
"type": "user"
33+
}
3434
]
3535
```
3636

@@ -132,7 +132,7 @@ Also known as cgroups, they are used to restrict resource usage for a container
132132
cgroups provide controls to restrict cpu, memory, IO, pids and network for the container.
133133
For more information, see the [kernel cgroups documentation](https://www.kernel.org/doc/Documentation/cgroups/cgroups.txt).
134134

135-
The path to the cgroups can to be specified in the Spec via `cgroupsPath`.
135+
The path to the cgroups can be specified in the Spec via `cgroupsPath`.
136136
`cgroupsPath` is expected to be relative to the cgroups mount point.
137137
If not specified, cgroups will be created under '/'.
138138
Implementations of the Spec can choose to name cgroups in any manner.

0 commit comments

Comments
 (0)