Skip to content

Commit 9f241df

Browse files
authored
Fix a few math typos. (#534)
* Fix a few typos * add changelog entry. * Use more consistently p for iterates instead of x and fix a few widehat typos.
1 parent 962ae49 commit 9f241df

3 files changed

Lines changed: 77 additions & 63 deletions

File tree

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ The file was started with Version `0.4`.
66
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
77
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [Unreleased]
10+
11+
### Fixed
12+
13+
* fixes a few typos in the doc strings of matrix update formulae within the quasi-Newton solver.
14+
915
## [0.5.27] November 11, 2025
1016

1117
### Added

src/documentation_glossary.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ define!(:LaTeX, :transp, raw"\mathrm{T}")
120120
define!(:LaTeX, :vdots, raw"\vdots")
121121
define!(:LaTeX, :vert, raw"\vert")
122122
define!(:LaTeX, :widehat, (letter) -> raw"\widehat{" * "$letter" * "}")
123-
define!(:LaTeX, :widetilde, raw"\widetilde")
123+
define!(:LaTeX, :widetilde, (letter) -> raw"\widetilde{" * "$letter" * "}")
124124
_tex(args...; kwargs...) = glossary(:LaTeX, args...; kwargs...)
125125
#
126126
# ---

0 commit comments

Comments
 (0)