From acd211765cc9e48a18d7597fd7423227c94f052e Mon Sep 17 00:00:00 2001
From: Brian Warner <warner@lothar.com>
Date: Tue, 29 Dec 2009 15:04:09 -0800
Subject: [PATCH] node.py/interfaces.py: minor docs fixes

---
 src/allmydata/interfaces.py | 5 ++---
 src/allmydata/node.py       | 2 +-
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/allmydata/interfaces.py b/src/allmydata/interfaces.py
index 501e3c1d..e8ff0b44 100644
--- a/src/allmydata/interfaces.py
+++ b/src/allmydata/interfaces.py
@@ -2014,7 +2014,7 @@ class IClient(Interface):
 
     def create_mutable_file(contents=""):
         """Create a new mutable file (with initial) contents, get back the
-        URI string.
+        new node instance.
 
         @param contents: (bytestring, callable, or None): this provides the
         initial contents of the mutable file. If 'contents' is a bytestring,
@@ -2027,8 +2027,7 @@ class IClient(Interface):
         content_maker= is more efficient than creating a mutable file and
         setting its contents in two separate operations.
 
-        @return: a Deferred that fires with tne (string) SSK URI for the new
-                 file.
+        @return: a Deferred that fires with an IMutableFileNode instance.
         """
 
     def create_dirnode(initial_children={}):
diff --git a/src/allmydata/node.py b/src/allmydata/node.py
index 790ed043..b68ee2fc 100644
--- a/src/allmydata/node.py
+++ b/src/allmydata/node.py
@@ -121,7 +121,7 @@ class Node(service.MultiService):
         cfg_tubport = self.get_config("node", "tub.port", "")
         if not cfg_tubport:
             # For 'tub.port', tahoe.cfg overrides the individual file on
-            # disk. So only read self._portnumfile is tahoe.cfg doesn't
+            # disk. So only read self._portnumfile if tahoe.cfg doesn't
             # provide a value.
             try:
                 file_tubport = open(self._portnumfile, "rU").read().strip()
-- 
2.45.2