From 802d1b00e271ae4fc6eaa9969311ed040b2af2af Mon Sep 17 00:00:00 2001 From: Bharadwaj Date: Wed, 26 Oct 2016 03:41:48 +0000 Subject: [PATCH] FIX: Modified the example.rst with the proper function call --- docs/example.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/example.rst b/docs/example.rst index e186617..a662a29 100644 --- a/docs/example.rst +++ b/docs/example.rst @@ -122,15 +122,15 @@ Arrays >>> is_equal([], []) True - >>> last([11, 22, 33, 44], 1) + >>> _.last([11, 22, 33, 44], 1) [44] - >>> last([11, 22, 33, 44], 3) + >>> _.last([11, 22, 33, 44], 3) [22, 33, 44] - >>> last([11, 22, 33, 44], None) + >>> _.last([11, 22, 33, 44], None) [] - >>> last([11, 22, 33, 44], -3) + >>> _.last([11, 22, 33, 44], -3) [] - >>> last([11, 22, 33, 44], 9) + >>> _.last([11, 22, 33, 44], 9) [] >>> _.subtract([1, 2, 3], 2)