From a3934c53e269cbe3293b80c7f5ccdce720e8c3a5 Mon Sep 17 00:00:00 2001
From: Brian Patton <bjp@google.com>
Date: Thu, 8 Oct 2020 12:33:37 -0700
Subject: [PATCH] Small documentation clarification.

PiperOrigin-RevId: 336142016
Change-Id: I0be807ff176bc32af473c49f12549755f79138d4
---
 tensorflow/python/ops/linalg_ops.py | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/tensorflow/python/ops/linalg_ops.py b/tensorflow/python/ops/linalg_ops.py
index 966706a854f..90b4abbdaf7 100644
--- a/tensorflow/python/ops/linalg_ops.py
+++ b/tensorflow/python/ops/linalg_ops.py
@@ -151,6 +151,9 @@ def matrix_triangular_solve(matrix, rhs, lower=True, adjoint=False, name=None):
 def cholesky_solve(chol, rhs, name=None):
   """Solves systems of linear eqns `A X = RHS`, given Cholesky factorizations.
 
+  Specifically, returns `X` from `A X = RHS`, where `A = L L^T`, `L` is the
+  `chol` arg and `RHS` is the `rhs` arg.
+
   ```python
   # Solve 10 separate 2x2 linear systems:
   A = ... # shape 10 x 2 x 2