Skip to content

Commit 2ffeb94

Browse files
committed
Fix typo in AutoDiffManifold comment and docs
Change-Id: I0b50e3e10661578e68f713e34a59f65b3692e745
1 parent da34da3 commit 2ffeb94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/source/nnls_modeling.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1715,7 +1715,7 @@ templated ``Plus`` and ``Minus`` functions that compute:
17151715
x_plus_delta = Plus(x, delta);
17161716
y_minus_x = Minus(y, x);
17171717

1718-
Where, ``x``, ``y`` and ``x_plus_y`` are vectors on the manifold in
1718+
Where, ``x``, ``y`` and ``x_plus_delta`` are vectors on the manifold in
17191719
the ambient space (so they are ``kAmbientSize`` vectors) and
17201720
``delta``, ``y_minus_x`` are vectors in the tangent space (so they are
17211721
``kTangentSize`` vectors).

include/ceres/autodiff_manifold.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,8 +47,8 @@ namespace ceres {
4747
// x_plus_delta = Plus(x, delta);
4848
// y_minus_x = Minus(y, x);
4949
//
50-
// Where, x, y and x_plus_y are vectors on the manifold in the ambient space (so
51-
// they are kAmbientSize vectors) and delta, y_minus_x are vectors in the
50+
// Where, x, y and x_plus_delta are vectors on the manifold in the ambient space
51+
// (so they are kAmbientSize vectors) and delta, y_minus_x are vectors in the
5252
// tangent space (so they are kTangentSize vectors).
5353
//
5454
// The Functor should have the signature:

0 commit comments

Comments
 (0)