Skip to content

Commit a18522e

Browse files
committed
Fix docs
rdoc parses f[i] as a link, which results in a broken link.
1 parent 70146fb commit a18522e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/bigdecimal/jacobian.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ def isEqual(a,b,zero=0.0,e=1.0e-8)
4242
end
4343

4444

45-
# Computes the derivative of f[i] at x[i].
46-
# fx is the value of f at x.
45+
# Computes the derivative of +f[i]+ at +x[i]+.
46+
# +fx+ is the value of +f+ at +x+.
4747
def dfdxi(f,fx,x,i)
4848
nRetry = 0
4949
n = x.size
@@ -75,7 +75,7 @@ def dfdxi(f,fx,x,i)
7575
deriv
7676
end
7777

78-
# Computes the Jacobian of f at x. fx is the value of f at x.
78+
# Computes the Jacobian of +f+ at +x+. +fx+ is the value of +f+ at +x+.
7979
def jacobian(f,fx,x)
8080
n = x.size
8181
dfdx = Array.new(n*n)

0 commit comments

Comments
 (0)