From ab77494027a4510e790ac61a24f2a6cc47dde28b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torsten=20St=C3=B6ter?= <4901704+tstoeter@users.noreply.github.com> Date: Fri, 7 Mar 2025 17:54:10 +0100 Subject: [PATCH] Fix small typo in documentation --- src/pca.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pca.jl b/src/pca.jl index a1f8495..37fbaa2 100644 --- a/src/pca.jl +++ b/src/pca.jl @@ -51,7 +51,7 @@ projection(M::PCA) = M.proj """ eigvecs(M::PCA) -Get the eigenvalues of the PCA model `M`. +Get the eigenvectors of the PCA model `M`. """ eigvecs(M::PCA) = projection(M)