ganga-devs / ganga

Ganga is an easy-to-use frontend for job definition and management
GNU General Public License v3.0
99 stars 159 forks source link

Fix typo in number of tasks in Splitters.rst #2298

Closed dg1223 closed 6 months ago

dg1223 commented 6 months ago

In the documentation page for Splitters, it is mentioned that the prime factorisation job for a very large number is being split into 5 different tasks whereas the code for job declation actually splits it up into 10 subjobs:

We can split up the factorisation of a very large number up into 5 different tasks. splitter = PrimeFactorizerSplitter(numsubjobs=10))

This PR fixes the typo to resolve the discrepancy in the documentation.

dg1223 commented 6 months ago

Just wanted to add that I ran tests (python -m pytest ganga/GangaCore/test/Unit) after making the change and they all passed as expected since this is just a documentation fix.