[Jython-checkins] jython: Fix typo in comment for PyDefaultDict#defaultdict___missing__

jim.baker jython-checkins at python.org
Thu May 22 22:02:45 CEST 2014


http://hg.python.org/jython/rev/e1ad4a0cd16e
changeset:   7268:e1ad4a0cd16e
user:        Indra Talip <indra.talip at gmail.com>
date:        Thu May 22 21:46:42 2014 +1000
summary:
  Fix typo in comment for PyDefaultDict#defaultdict___missing__

files:
  src/org/python/modules/_collections/PyDefaultDict.java |  6 +++---
  1 files changed, 3 insertions(+), 3 deletions(-)


diff --git a/src/org/python/modules/_collections/PyDefaultDict.java b/src/org/python/modules/_collections/PyDefaultDict.java
--- a/src/org/python/modules/_collections/PyDefaultDict.java
+++ b/src/org/python/modules/_collections/PyDefaultDict.java
@@ -88,9 +88,9 @@
     }
 
     /**
-     * This method is does NOT call __setitem__ instead it relies on the fact
-     * that it is called within the context of `CacheLoader#load` to actually
-     * insert the value into the dict.
+     * This method does NOT call __setitem__ instead it relies on the fact that it is
+     * called within the context of `CacheLoader#load` to actually insert the value
+     * into the dict.
      */
     @ExposedMethod
     final PyObject defaultdict___missing__(PyObject key) {

-- 
Repository URL: http://hg.python.org/jython


More information about the Jython-checkins mailing list