rdoc/ehandling.rdoc in rb-gsl-1.16.0.2 vs rdoc/ehandling.rdoc in rb-gsl-1.16.0.3.rc1

- old
+ new

@@ -1,9 +1,9 @@ # # = Error Handling # -# == {}[link:index.html"name="1] Error codes +# == Error codes # The GSL routines report an error whenever they cannot perform the task # requested of them. For example, a root-finding function would return a # non-zero error code if could not converge to the requested accuracy, # or exceeded a limit on the number of iterations. Situations like this # are a normal occurrence when using any mathematical library and @@ -28,11 +28,11 @@ # when trying to allocate memory with malloc. # * <tt>GSL::EINVAL</tt> - Invalid argument. This is used to indicate various # kinds of problems with passing the wrong argument to a library function # (like <tt>EINVAL</tt> in the C library). # -# == {}[link:index.html"name="2] Error handler +# == Error handler # In Ruby/GSL, the default GSL error handler is replaced by an other one which calls # <tt>rb_raise()</tt>. Thus whenever a GSL routine reports a fatal error, # a Ruby Exception is generated. # # --- @@ -40,11 +40,11 @@ # * GSL::set_error_handler { |reason, file, line, errno| ... } # # This replaces the Ruby/GSL default error handler by a user-defined handler # given by a Proc object <tt>proc</tt> or a block. # -# {prev}[link:rdoc/use_rdoc.html] -# {next}[link:rdoc/math_rdoc.html] +# {prev}[link:use_rdoc.html] +# {next}[link:math_rdoc.html] # -# {Reference index}[link:rdoc/ref_rdoc.html] +# {Reference index}[link:ref_rdoc.html] # {top}[link:index.html] #