summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorEugen Wissner <belka@caraus.de>2018-03-21 08:15:58 +0100
committerEugen Wissner <belka@caraus.de>2018-03-21 08:15:58 +0100
commitc9e4871fb5adea71875c7778749543955c058079 (patch)
tree73cfb7815b1b238ac486b1523fca5711470e86fd /source
parent1f4ab88254635328910ec4494166dc4d2d6bbee9 (diff)
downloadtanya-c9e4871fb5adea71875c7778749543955c058079.tar.gz
algorithm.mutation: Fix param name in the docs
Diffstat (limited to 'source')
-rw-r--r--source/tanya/algorithm/mutation.d4
-rw-r--r--source/tanya/algorithm/package.d2
2 files changed, 3 insertions, 3 deletions
diff --git a/source/tanya/algorithm/mutation.d b/source/tanya/algorithm/mutation.d
index e971abf..df741cc 100644
--- a/source/tanya/algorithm/mutation.d
+++ b/source/tanya/algorithm/mutation.d
@@ -5,7 +5,7 @@
/**
* Algorithms that modify its arguments.
*
- * Copyright: Eugene Wissner 2017.
+ * Copyright: Eugene Wissner 2017-2018.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)
@@ -255,7 +255,7 @@ T move(T)(ref T source) @trusted
*
* Params:
* a = The first object.
- * a = The second object.
+ * b = The second object.
*/
void swap(T)(ref T a, ref T b) @trusted
{
diff --git a/source/tanya/algorithm/package.d b/source/tanya/algorithm/package.d
index e147073..d925362 100644
--- a/source/tanya/algorithm/package.d
+++ b/source/tanya/algorithm/package.d
@@ -5,7 +5,7 @@
/**
* Collection of generic algorithms.
*
- * Copyright: Eugene Wissner 2017.
+ * Copyright: Eugene Wissner 2017-2018.
* License: $(LINK2 https://www.mozilla.org/en-US/MPL/2.0/,
* Mozilla Public License, v. 2.0).
* Authors: $(LINK2 mailto:info@caraus.de, Eugene Wissner)