diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2015-09-08 11:06:03 +0200 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2015-09-08 11:06:03 +0200 |
commit | 55e479657a7c626bb635b9158ebabdccf1eb7465 (patch) | |
tree | 974eb10f0608541f6d992b8ad03b4ad1e349b411 /lib/pure | |
parent | 5eaf68882ec87160033a4707378967188b642c3d (diff) | |
parent | 564c9f4013b5abca74a4fa961c54a16b918bf49f (diff) | |
download | Nim-55e479657a7c626bb635b9158ebabdccf1eb7465.tar.gz |
Merge pull request #3303 from Amrykid/amrykid-name-change
Fixed my name.
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/collections/sequtils.nim | 4 | ||||
-rw-r--r-- | lib/pure/events.nim | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/lib/pure/collections/sequtils.nim b/lib/pure/collections/sequtils.nim index 5fac1f0af..e6ea19a6b 100644 --- a/lib/pure/collections/sequtils.nim +++ b/lib/pure/collections/sequtils.nim @@ -1,13 +1,13 @@ # # # Nim's Runtime Library -# (c) Copyright 2011 Alex Mitchell +# (c) Copyright 2011 Alexander Mitchell-Robinson # # See the file "copying.txt", included in this # distribution, for details about the copyright. # -## :Author: Alex Mitchell +## :Author: Alexander Mitchell-Robinson (Amrykid) ## ## This module implements operations for the built-in `seq`:idx: type which ## were inspired by functional programming languages. If you are looking for diff --git a/lib/pure/events.nim b/lib/pure/events.nim index 01b64c545..62800c5c8 100644 --- a/lib/pure/events.nim +++ b/lib/pure/events.nim @@ -1,13 +1,13 @@ # # # Nim's Runtime Library -# (c) Copyright 2011 Alex Mitchell +# (c) Copyright 2011 Alexander Mitchell-Robinson # # See the file "copying.txt", included in this # distribution, for details about the copyright. # -## :Author: Alex Mitchell +## :Author: Alexander Mitchell-Robinson (Amrykid) ## ## This module implements an event system that is not dependent on external ## graphical toolkits. It was originally called ``NimEE`` because |