From a8b801b18577daa0eaae85a1fab0467210703a0a Mon Sep 17 00:00:00 2001 From: James Rowland Date: Thu, 23 May 2024 20:10:58 -0700 Subject: [PATCH] Fix documentation typo The documentation says "create 9 random times" but the code shows 6 random times. Updated documentation to reflect the code. --- doc/notebooks/sgp4_partial_derivatives.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/notebooks/sgp4_partial_derivatives.ipynb b/doc/notebooks/sgp4_partial_derivatives.ipynb index b4b8f76..bf29a25 100644 --- a/doc/notebooks/sgp4_partial_derivatives.ipynb +++ b/doc/notebooks/sgp4_partial_derivatives.ipynb @@ -593,7 +593,7 @@ " data.append(lines[i+1])\n", " data.append(lines[i+2])\n", " tles.append(dsgp4.tle.TLE(data))\n", - "#we also create 9 random times, tracking the gradients:\n", + "#we also create 6 random times, tracking the gradients:\n", "tsinces=torch.rand((6,))" ] },