Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / server2 / chroot_file_system.py
index d391fe5..950aa39 100644 (file)
@@ -11,8 +11,8 @@ from future import Gettable, Future
 
 class ChrootFileSystem(FileSystem):
   '''ChrootFileSystem(fs, path) exposes a FileSystem whose root is |path| inside
-  |fs|, so ChrootFileSystem(fs, '/hello').Read(['/world']) is equivalent to
-  fs.Read(['/hello/world']) with the '/hello' prefix stripped from the result.
+  |fs|, so ChrootFileSystem(fs, 'hello').Read(['world']) is equivalent to
+  fs.Read(['hello/world']) with the 'hello' prefix stripped from the result.
   '''
 
   def __init__(self, file_system, root):