From 6b8d61b122ec1f130f9641dacec140e54f7177c8 Mon Sep 17 00:00:00 2001 From: Abel Abate Date: Thu, 19 Mar 2026 11:33:03 +0100 Subject: [PATCH] docs: fix grammar on style-guide --- docs/source/development/styleguide.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/development/styleguide.md b/docs/source/development/styleguide.md index b4847e6d1..a15a3ad67 100644 --- a/docs/source/development/styleguide.md +++ b/docs/source/development/styleguide.md @@ -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.