]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - gold/stringpool.h
Update year range in copyright notice of binutils files
[thirdparty/binutils-gdb.git] / gold / stringpool.h
index b6383296af0fae3cea887feb1ac1b8557db9442f..cceb97e72192767f92de69e5ba5c9743114f485d 100644 (file)
@@ -1,6 +1,6 @@
 // stringpool.h -- a string pool for gold    -*- C++ -*-
 
-// Copyright 2006, 2007, 2008, 2009, 2010, 2011 Free Software Foundation, Inc.
+// Copyright (C) 2006-2021 Free Software Foundation, Inc.
 // Written by Ian Lance Taylor <iant@google.com>.
 
 // This file is part of gold.
@@ -118,7 +118,7 @@ class Chunked_vector
       {
        this->chunks_.resize((n + chunk_size - 1) / chunk_size);
        // We need to call reserve() of all chunks since changing
-       // this->chunks_ casues Element_vectors to be copied.  The
+       // this->chunks_ causes Element_vectors to be copied.  The
        // reserved capacity of an Element_vector may be lost in copying.
        for (size_t i = 0; i < this->chunks_.size(); ++i)
          this->chunks_[i].reserve(chunk_size);