From 42861cdd068c3cde0d68a281c9aa0bec66f473dc Mon Sep 17 00:00:00 2001 From: Josh Hickman Date: Thu, 8 Jan 2015 21:24:39 -0500 Subject: [PATCH] Update doc on acceptable fib option args Matrix fibonacci is supported, best to make sure the documentation is consistent with the code. --- lib/job_interview/fibonacci.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/job_interview/fibonacci.rb b/lib/job_interview/fibonacci.rb index 7c49594..5a3b8db 100644 --- a/lib/job_interview/fibonacci.rb +++ b/lib/job_interview/fibonacci.rb @@ -3,7 +3,7 @@ module JobInterview module Fibonacci ## - # args should be the strategy to be used (one of :iterative, :recursive) + # args should be the strategy to be used (one of :iterative, :recursive, :matrix) # Defaults to recursive # def fib(n, *args)