Browse code

Fixed small documentation typo

Signed-off-by: Cristina Yenyxe Gonzalez Garcia <cristina.yenyxe@gmail.com>

Cristina Yenyxe Gonzalez Garcia authored on 2020/05/18 22:44:09
Showing 1 changed files
... ...
@@ -559,7 +559,7 @@ func TestCreateTmpfsOverrideAnonymousVolume(t *testing.T) {
559 559
 	inspect, err := client.ContainerInspect(ctx, id)
560 560
 	assert.NilError(t, err)
561 561
 	// tmpfs do not currently get added to inspect.Mounts
562
-	// Normally an anoynmous volume would, except now tmpfs should prevent that.
562
+	// Normally an anonymous volume would, except now tmpfs should prevent that.
563 563
 	assert.Assert(t, is.Len(inspect.Mounts, 0))
564 564
 
565 565
 	chWait, chErr := client.ContainerWait(ctx, id, container.WaitConditionNextExit)