Skip to content
Open
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
6 changes: 3 additions & 3 deletions docs/source/development/styleguide.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,9 +49,9 @@ Your contribution should fulfill the criteria provided below.
on the selected benchmark sets and other things. In such situations, dictionaries that
map strings to BenchmarkProblem objects are a good idea.

- Think about autocomplete! If want to accept a string as argument (e.g. an algorithm
name) also accept input types that are more amenable to static analysis and offer
better autocomplete.
- Think about autocomplete! If you want to accept a string as an argument (e.g. an
algorithm name) also accept input types that are more amenable to static analysis and
offer better autocomplete.

- Whenever possible, use immutable types. Whenever things need to be changeable,
consider using an immutable type with copy constructors for modified instances.
Expand Down
Loading