From fc9a416df7514d9f0731984c408b79cc3bd877e6 Mon Sep 17 00:00:00 2001 From: Chen Hanxiao Date: Wed, 9 Oct 2013 15:09:11 +0800 Subject: [PATCH] cgroup: fix a comment typo in vircgroup.c s/shoule/should Signed-off-by: Chen Hanxiao --- src/util/vircgroup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/vircgroup.c b/src/util/vircgroup.c index e99caf5c54..91b87049ce 100644 --- a/src/util/vircgroup.c +++ b/src/util/vircgroup.c @@ -2431,7 +2431,7 @@ virCgroupGetCpuShares(virCgroupPtr group, unsigned long long *shares) int virCgroupSetCpuCfsPeriod(virCgroupPtr group, unsigned long long cfs_period) { - /* The cfs_period shoule be greater or equal than 1ms, and less or equal + /* The cfs_period should be greater or equal than 1ms, and less or equal * than 1s. */ if (cfs_period < 1000 || cfs_period > 1000000) {