From 648e5b3ccd54a9326d64533d44869caabb84e8d0 Mon Sep 17 00:00:00 2001 From: Moritz Kuett Date: Tue, 17 Nov 2015 22:35:39 -0500 Subject: [PATCH 1/2] Small changes in documentation --- pyne/material.pyx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pyne/material.pyx b/pyne/material.pyx index a171888f71..69fa000bd6 100644 --- a/pyne/material.pyx +++ b/pyne/material.pyx @@ -686,14 +686,14 @@ cdef class _Material: return newmat def collapse_elements(self, nucset): - """collapse_elements(self) - Collapses the elements in the material, excluding the nucids in - paramater set. This function returns a copy of the material. + """collapse_elements(self, nucset) + Collapses the elements in the material, excluding the nuclids in + the set nucset. This function returns a copy of the material. Returns ------- newmat : Material - A copied and collapseed material. + A copied and collapsed material. """ cdef _Material newmat = Material() From be37f3afae5ece48ab569ad44733ab4e56cc131d Mon Sep 17 00:00:00 2001 From: Moritz Kuett Date: Wed, 18 Nov 2015 08:30:29 -0500 Subject: [PATCH 2/2] nucid not nuclid --- pyne/material.pyx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyne/material.pyx b/pyne/material.pyx index 69fa000bd6..8cbf3077eb 100644 --- a/pyne/material.pyx +++ b/pyne/material.pyx @@ -687,7 +687,7 @@ cdef class _Material: def collapse_elements(self, nucset): """collapse_elements(self, nucset) - Collapses the elements in the material, excluding the nuclids in + Collapses the elements in the material, excluding the nucids in the set nucset. This function returns a copy of the material. Returns