Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix/review #25

Open
wants to merge 3 commits into
base: update/ci
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion python/src/DistributionDataType.python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void wrapDistributionDataType( python::module& module, python::module& ) {

module,
"DistributionDataType",
"The distribition data type for a reaction product",
"The distribution data type for a reaction product",
python::arithmetic()
);

Expand Down
4 changes: 2 additions & 2 deletions python/src/TabulatedScatteringFunction.python.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ void wrapTabulatedScatteringFunction( python::module& module, python::module& )
"Arguments:\n"
" self the table\n"
" energy the incident photon energy\n"
" cosine the coutgoing photon osine"
" cosine the outgoing photon cosine"
)
.def(

Expand All @@ -113,7 +113,7 @@ void wrapTabulatedScatteringFunction( python::module& module, python::module& )
"Arguments:\n"
" self the table\n"
" energy the incident photon energy\n"
" cosine the coutgoing photon osine"
" cosine the outgoing photon cosine"
);

// add standard tabulated data definitions
Expand Down
3 changes: 2 additions & 1 deletion src/dryad/format/endf/createTabulatedAverageEnergy.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ namespace format {
namespace endf {

/**
* @brief Create a TabulatedMultiplicity from a parsed ENDF multiplicity
* @brief Create a TabulatedAverageEnergy from a parsed ENDF MF26
* energy transfer component
*/
TabulatedAverageEnergy
createTabulatedAverageEnergy( const ENDFtk::section::Type< 26 >::EnergyTransfer& transfer ) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ namespace endf {
}
catch ( ... ) {

Log::info( "Error encountered while creating an average reaction product energy table" );
Log::info( "Error encountered while creating a reaction product energy distribution" );
throw;
}
}
Expand Down