From faf446b3f127881a4ec1f89d610f13c138e5b9a4 Mon Sep 17 00:00:00 2001
From: Jean-Paul Calderone <exarkun@twistedmatrix.com>
Date: Wed, 16 Oct 2019 09:33:19 -0400
Subject: [PATCH] docstring improvements

---
 src/_zkapauthorizer/storage_common.py            | 3 +++
 src/_zkapauthorizer/tests/test_storage_server.py | 8 ++++++--
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/src/_zkapauthorizer/storage_common.py b/src/_zkapauthorizer/storage_common.py
index a41f40a..d5a24ff 100644
--- a/src/_zkapauthorizer/storage_common.py
+++ b/src/_zkapauthorizer/storage_common.py
@@ -118,6 +118,9 @@ def get_implied_data_length(data_vector, new_length):
     """
     :param data_vector: See ``allmydata.interfaces.DataVector``.
 
+    :param new_length: See
+        ``allmydata.interfaces.RIStorageServer.slot_testv_and_readv_and_writev``.
+
     :return int: The amount of data, in bytes, implied by a data vector and a
         size.
     """
diff --git a/src/_zkapauthorizer/tests/test_storage_server.py b/src/_zkapauthorizer/tests/test_storage_server.py
index 7f3c228..07cc6e1 100644
--- a/src/_zkapauthorizer/tests/test_storage_server.py
+++ b/src/_zkapauthorizer/tests/test_storage_server.py
@@ -429,8 +429,8 @@ class PassValidationTests(TestCase):
     )
     def test_immutable_share_sizes(self, storage_index, secrets, sharenums, allocated_size):
         """
-        ``share_sizes`` returns the size of the requested shares in the requested
-        storage_index
+        ``share_sizes`` returns the size of the requested iimutable shares in the
+        requested storage index.
         """
         # hypothesis causes our storage server to be used many times.  Clean
         # up between iterations.
@@ -474,6 +474,10 @@ class PassValidationTests(TestCase):
         test_and_write_vectors_for_shares=test_and_write_vectors_for_shares(),
     )
     def test_mutable_share_sizes(self, slot, secrets, sharenums, test_and_write_vectors_for_shares):
+        """
+        ``share_sizes`` returns the size of the requested mutable shares in the
+        requested slot.
+        """
         # hypothesis causes our storage server to be used many times.  Clean
         # up between iterations.
         cleanup_storage_server(self.anonymous_storage_server)
-- 
GitLab