doc: use 'module' instead of 'package' in comments
[nit.git] / src / analysis / dead_method_removal.nit
index 703a72b..beb6a7c 100644 (file)
@@ -14,7 +14,7 @@
 # See the License for the specific language governing permissions and
 # limitations under the License.
 
-# This package introduces an algorithm to remove the body of dead methods
+# This module introduces an algorithm to remove the body of dead methods
 package dead_method_removal
 
 import reachable_method_analysis
@@ -38,7 +38,7 @@ redef class Program
 
        # This method will create a file and output informations about this optimization
        fun dump_dead_method_optimization(directory_name: String) do
-               var f = new OFStream.open("{directory_name}/{module.name}.dmr_opt.log")
+               var f = new OFStream.open("{directory_name}/{main_module.name}.dmr_opt.log")
 
                f.write("Nb. dead iroutines removed: {nb_removed_iroutines}\n")
                f.write("Nb. live iroutines: {nb_not_removed_iroutines}\n")