Skip to content

Commit

Permalink
Fix typo in documentation
Browse files Browse the repository at this point in the history
There were a number of places where library was misspelt. This commit
fixes those typos.
  • Loading branch information
arunkannawadi committed Oct 24, 2024
1 parent cef4a3c commit be99258
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/install_pip.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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),
Expand Down
2 changes: 1 addition & 1 deletion src/SBInterpolatedImage.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit be99258

Please sign in to comment.