From e99d78db1b964f4b3662b61012aa96d003722313 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 15 Oct 2012 21:22:42 -0400 Subject: [PATCH] Clean up a comment. --- fixed_point_method.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fixed_point_method.m b/fixed_point_method.m index c28a66e..eb3b61c 100644 --- a/fixed_point_method.m +++ b/fixed_point_method.m @@ -13,8 +13,8 @@ function [fixed_point, iterations] = fixed_point_method(g, epsilon, x0) ## ## * ``fixed_point`` - The fixed point that we found. ## - ## * ``iterations`` - The number of bisections that we performed - ## during the search. + ## * ``iterations`` - The number of iterations that we performed + ## during the search. ## iterations = 0; -- 2.43.2