diff --git a/README.md b/README.md index edfb51b..41b51d8 100644 --- a/README.md +++ b/README.md @@ -2,14 +2,14 @@ # FMIImport.jl ## What is FMIImport.jl? -[*FMIImport.jl*](https://github.com/ThummeTo/FMIImport.jl) implements the import functionalities of the FMI-standard ([fmi-standard.org](http://fmi-standard.org/)) for the Julia programming language. +[*FMIImport.jl*](https://github.com/ThummeTo/FMIImport.jl) implements the import functionalities of the FMI-standard ([fmi-standard.org](https://fmi-standard.org/)) for the Julia programming language. [*FMIImport.jl*](https://github.com/ThummeTo/FMIImport.jl) provides the foundation for the Julia packages [*FMI.jl*](https://github.com/ThummeTo/FMI.jl) and [*FMIFlux.jl*](https://github.com/ThummeTo/FMIFlux.jl). -[![Dev Docs](https://img.shields.io/badge/docs-dev-blue.svg)](https://ThummeTo.github.io/FMI.jl/dev) +[![Dev Docs](https://img.shields.io/badge/docs-dev-blue.svg)](https://thummeto.github.io/FMI.jl/dev/) [![Run Tests](https://github.com/ThummeTo/FMIImport.jl/actions/workflows/Test.yml/badge.svg)](https://github.com/ThummeTo/FMIImport.jl/actions/workflows/Test.yml) [![Run PkgEval](https://github.com/ThummeTo/FMIImport.jl/actions/workflows/Eval.yml/badge.svg)](https://github.com/ThummeTo/FMIImport.jl/actions/workflows/Eval.yml) -[![Coverage](https://codecov.io/gh/ThummeTo/FMIImport.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/ThummeTo/FMIImport.jl) +[![Coverage](https://codecov.io/gh/ThummeTo/FMIImport.jl/branch/main/graph/badge.svg)](https://app.codecov.io/gh/ThummeTo/FMIImport.jl) [![ColPrac: Contributor's Guide on Collaborative Practices for Community Packages](https://img.shields.io/badge/ColPrac-Contributor's%20Guide-blueviolet)](https://github.com/SciML/ColPrac) [![SciML Code Style](https://img.shields.io/static/v1?label=code%20style&message=SciML&color=9558b2&labelColor=389826)](https://github.com/SciML/SciMLStyle) diff --git a/src/FMI2/c.jl b/src/FMI2/c.jl index cd75422..e0e1904 100644 --- a/src/FMI2/c.jl +++ b/src/FMI2/c.jl @@ -914,7 +914,7 @@ More detailed: - FMISpec2.0.2[p.16]: 2.1.3 Status Returned by Functions - FMISpec2.0.2[p.25]: 2.1.8 Getting and Setting the Complete FMU State -See also [`fmi2FreeFMUstate!`](@ref). +See also [`fmi2FreeFMUstate`](@ref). """ function FMICore.fmi2FreeFMUstate(c::FMU2Component, FMUstate::Ref{fmi2FMUstate}) diff --git a/src/FMI2/int.jl b/src/FMI2/int.jl index 4e7f191..e77b1e2 100644 --- a/src/FMI2/int.jl +++ b/src/FMI2/int.jl @@ -945,7 +945,7 @@ Free the memory for the allocated FMU state - FMISpec2.0.2[p.16]: 2.1.3 Status Returned by Functions - FMISpec2.0.2[p.25]: 2.1.8 Getting and Setting the Complete FMU State -See also [`fmi2FreeFMUstate!`](@ref). +See also [`fmi2FreeFMUstate`](@ref). """ function fmi2FreeFMUstate(c::FMU2Component, state::fmi2FMUstate) stateRef = Ref(state) diff --git a/src/FMI3/int.jl b/src/FMI3/int.jl index 87dbf16..1ffa4e3 100644 --- a/src/FMI3/int.jl +++ b/src/FMI3/int.jl @@ -2325,7 +2325,6 @@ function fmi3SetClock( end """ - fmi3GetFMUState(c::FMU3Instance) Makes a copy of the internal FMU state and returns a pointer to this copy.