From be99258b9dbf53c4c0b2364b5ba6a1c1521a315c Mon Sep 17 00:00:00 2001 From: Arun Kannawadi Date: Thu, 24 Oct 2024 00:51:38 -0400 Subject: [PATCH] Fix typo in documentation There were a number of places where library was misspelt. This commit fixes those typos. --- docs/install_pip.rst | 2 +- src/SBInterpolatedImage.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/install_pip.rst b/docs/install_pip.rst index 6459953c734..9e2e25122b8 100644 --- a/docs/install_pip.rst +++ b/docs/install_pip.rst @@ -20,7 +20,7 @@ This might fail if certain libraries are installed in non-standard locations. In this case, add the paths for these libraries to both the LIBRARY_PATH and LD_LIBRARY_PATH environmental variables before running pip:: - export LIBRARY_PATH=$LIBARY_PATH:/path/to/lib:/other/path/to/lib + export LIBRARY_PATH=$LIBRARY_PATH:/path/to/lib:/other/path/to/lib export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/path/to/lib:/other/path/to/lib If you would rather install from source (e.g. to work on a development branch), diff --git a/src/SBInterpolatedImage.cpp b/src/SBInterpolatedImage.cpp index 95036937602..16aa5a120c1 100644 --- a/src/SBInterpolatedImage.cpp +++ b/src/SBInterpolatedImage.cpp @@ -1279,7 +1279,7 @@ namespace galsim { assert(N>=0); checkReadyToShoot(); /* The pixel coordinates are stored by cumulative absolute flux in - * a C++ standard-libary set, so the inversion is done with a binary + * a C++ standard-library set, so the inversion is done with a binary * search tree. There are no doubt speed gains available from sorting the * pixels by flux, and somehow weighting the tree search to the elements holding * the most flux. But I'm doing it the simplest way right now.