From c9e4871fb5adea71875c7778749543955c058079 Mon Sep 17 00:00:00 2001 From: Eugen Wissner Date: Wed, 21 Mar 2018 08:15:58 +0100 Subject: [PATCH] algorithm.mutation: Fix param name in the docs --- source/tanya/algorithm/mutation.d | 4 ++-- source/tanya/algorithm/package.d | 2 +- 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)