From d8b470e22dc869443625c31cbf8925308913e200 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Mon, 20 Jan 2025 08:46:32 +0100 Subject: [PATCH] Reference SavedSubsystem in docs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes ``` ┌ Error: Cannot resolve @ref for md"[`SavedSubsystem`](@ref)" in src/types/ode_types.md. │ - No docstring found in doc for binding `SciMLBase.SavedSubsystem`. │ - No docstring found in doc for binding `Main.SavedSubsystem`. └ @ Documenter ~/.cache/julia-buildkite-plugin/depots/0185fce3-4489-413a-a934-123dd653ef61/packages/Documenter/Bs999/src/utilities/utilities.jl:44 ``` --- src/solutions/ode_solutions.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solutions/ode_solutions.jl b/src/solutions/ode_solutions.jl index c1c8c16d82..f1d89ad8b1 100644 --- a/src/solutions/ode_solutions.jl +++ b/src/solutions/ode_solutions.jl @@ -104,7 +104,7 @@ https://docs.sciml.ai/DiffEqDocs/stable/basics/solution/ successfully, whether it terminated early due to a user-defined callback, or whether it exited due to an error. For more details, see [the return code documentation](https://docs.sciml.ai/SciMLBase/stable/interfaces/Solutions/#retcodes). -- `saved_subsystem`: a [`SavedSubsystem`](@ref) representing the subset of variables saved +- `saved_subsystem`: a [`SciMLBase.SavedSubsystem`](@ref) representing the subset of variables saved in this solution, or `nothing` if all variables are saved. Here "variables" refers to both continuous-time state variables and timeseries parameters. """