From 378cde202c0a484fb79f5b2e804fdd1d30aeaa4c Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 22 Mar 2018 16:33:30 +0100 Subject: [PATCH] Correct documentation Contributes to issue CURA-5128. --- plugins/GCodeGzReader/GCodeGzReader.py | 2 +- plugins/GCodeGzReader/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/GCodeGzReader/GCodeGzReader.py b/plugins/GCodeGzReader/GCodeGzReader.py index 52df7f074f..ec473fb299 100644 --- a/plugins/GCodeGzReader/GCodeGzReader.py +++ b/plugins/GCodeGzReader/GCodeGzReader.py @@ -12,7 +12,7 @@ from UM.Mesh.MeshReader import MeshReader #The class we're extending/implementin from UM.PluginRegistry import PluginRegistry from UM.Scene.SceneNode import SceneNode #For typing. -## A file writer that writes gzipped g-code. +## A file reader that reads gzipped g-code. # # If you're zipping g-code, you might as well use gzip! class GCodeGzReader(MeshReader): diff --git a/plugins/GCodeGzReader/__init__.py b/plugins/GCodeGzReader/__init__.py index 67424a7d45..98965c00aa 100644 --- a/plugins/GCodeGzReader/__init__.py +++ b/plugins/GCodeGzReader/__init__.py @@ -1,4 +1,4 @@ -# Copyright (c) 2016 Aleph Objects, Inc. +# Copyright (c) 2018 Ultimaker B.V. # Cura is released under the terms of the LGPLv3 or higher. from . import GCodeGzReader