diff --git a/LICENSE b/LICENSE
index a830ab0fde039982bfc6262f36f0539d566fc8a4..8dc93f47ce5c91c98d3127efa9f1b88d0131e47e 100644
--- a/LICENSE
+++ b/LICENSE
@@ -24,7 +24,7 @@ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
PyOpenCL includes derivatives of parts of the `Thrust
-`_ computing package (in particular the scan
+`_ computing package (in particular the scan
implementation). These parts are licensed as follows:
Copyright 2008-2011 NVIDIA Corporation
diff --git a/pyopencl/scan.py b/pyopencl/scan.py
index 272e6996ce23271f0bf148cf28fa078be77f34e3..7787041c4ba8135c1f1c5e3f54e5dab0007dbc21 100644
--- a/pyopencl/scan.py
+++ b/pyopencl/scan.py
@@ -24,14 +24,10 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-Derived from thrust/detail/backend/cuda/detail/fast_scan.inl
-within the Thrust project, https://code.google.com/p/thrust/
+Derived from code within the Thrust project, https://github.com/thrust/thrust/
"""
-# Direct link to thrust source:
-# https://code.google.com/p/thrust/source/browse/thrust/detail/backend/cuda/detail/fast_scan.inl # noqa
-
import numpy as np
import pyopencl as cl