Browse Source

Merge pull request #43949 from thaJeztah/fix_godoc

Samuel Karp 3 years ago
parent
commit
73785fff07
1 changed files with 3 additions and 2 deletions
  1. 3 2
      daemon/config/config_windows.go

+ 3 - 2
daemon/config/config_windows.go

@@ -5,8 +5,9 @@ import (
 )
 )
 
 
 const (
 const (
-	// This is used by the `default-runtime` flag in dockerd as the default value.
-	// On windows we'd prefer to keep this empty so the value is auto-detected based on other options.
+	// StockRuntimeName is used by the 'default-runtime' flag in dockerd as the
+	// default value. On Windows keep this empty so the value is auto-detected
+	// based on other options.
 	StockRuntimeName = ""
 	StockRuntimeName = ""
 )
 )