From 2f880f04486ea1b1e15e8794707a7b61ae57d965 Mon Sep 17 00:00:00 2001 From: Nam Nguyen Hoai Date: Wed, 28 Sep 2016 15:53:08 +0700 Subject: [PATCH] Fix typo in docstring This patch replaces type "tuble" to "tuple". Change-Id: I0a54f10df0f48fab9553e6438735e42ae1bb5b3b --- swift/obj/mem_diskfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swift/obj/mem_diskfile.py b/swift/obj/mem_diskfile.py index a3b37f4834..ca1229e59a 100644 --- a/swift/obj/mem_diskfile.py +++ b/swift/obj/mem_diskfile.py @@ -35,7 +35,7 @@ class InMemoryFileSystem(object): A very simplistic in-memory file system scheme. There is one dictionary mapping a given object name to a tuple. The first - entry in the tuble is the cStringIO buffer representing the file contents, + entry in the tuple is the cStringIO buffer representing the file contents, the second entry is the metadata dictionary. """