From cb0d5078da71643f5cfc10fea407826f3f4a36ff Mon Sep 17 00:00:00 2001 From: James Strachan Date: Wed, 7 Mar 2012 12:44:00 +0000 Subject: [PATCH] added some better wikilinks --- libraries/stdlib/src/JavaIterablesSpecial.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libraries/stdlib/src/JavaIterablesSpecial.kt b/libraries/stdlib/src/JavaIterablesSpecial.kt index d830fa88ebb..e665fc759ba 100644 --- a/libraries/stdlib/src/JavaIterablesSpecial.kt +++ b/libraries/stdlib/src/JavaIterablesSpecial.kt @@ -41,7 +41,7 @@ inline fun java.lang.Iterable.first() : T { /** * Get the last element in the collection. * - * If base collection implements List interface, the combination of size() and get() + * If base collection implements [[List]] interface, the combination of size() and get() * methods will be used for getting last element. Otherwise, this method determines the * last item by iterating through the all items. * @@ -67,7 +67,7 @@ fun java.lang.Iterable.last() : T { * Checks if collection contains given item. * * Method checks equality of the objects with T.equals method. - * If collection implements java.util.AbstractCollection an overridden implementation of the contains + * If collection implements [[java.util.AbstractCollection]] an overridden implementation of the contains * method will be used. */ fun java.lang.Iterable.contains(item : T) : Boolean {