Skip to content

Commit

Permalink
Merge pull request #72 from njoy/feature/updates
Browse files Browse the repository at this point in the history
Feature/updates
  • Loading branch information
whaeck authored Jul 24, 2024
2 parents d7de211 + cecd34c commit bda84b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ContinuousIntegration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-22.04, macos-12 ]
cxx: [ clang++, g++-11 ]
cxx: [ clang++, g++-12 ]
build_type: [ Debug, Release ]

steps:
Expand Down
4 changes: 2 additions & 2 deletions python/src/definitions.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,14 +194,14 @@ void addStandardSeriesDefinitions( PythonClass& component ) {
"coefficients",
[] ( const Component& self ) -> decltype(auto)
{ return self.coefficients(); },
"The Legendre coefficients"
"The coefficients of the series expansion"
)
.def_property_readonly(

"order",
[] ( const Component& self ) -> decltype(auto)
{ return self.order(); },
"The Legendre order"
"The order of the series expansion"
)
.def(

Expand Down

0 comments on commit bda84b2

Please sign in to comment.