Skip to content

Commit 945da3f

Browse files
committed
Fix typos in doc
1 parent ca65f84 commit 945da3f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/source/contributing/code/development-guidelines.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ to the style is:
6363
6464
clang-format -style=file -i src/filename.cpp
6565
66-
If your changes were done on many files across the codebase, you can use this oneliner to run ``clang-format`` on the entire 'src' directory:
66+
If your changes were done on many files across the codebase, you can use this oneliner to run ``clang-format`` on the entire ``src`` directory:
6767

6868
.. code:: bash
6969
@@ -94,7 +94,7 @@ Similar to ``clang-format``, If your changes were done on many files across the
9494
9595
run-clang-tidy -p build "src/(?!(themes|bindings|fonts|img|translations|build|.*_autogen)).*\.(cpp|h)$"
9696
97-
``clang-tidy`` can also attempt to fix style violations using the ``-fix`` flag. However these may not always be perfect, as an example ``clang-tidy`` puts the const qualifier on the right side of type name whereas it is preferred to be on the left in cutter. Make sure to verify the fixes before opening a pull request:
97+
``clang-tidy`` can also attempt to fix style violations using the ``-fix`` flag. However these may not always be perfect. Make sure to verify the fixes before opening a pull request:
9898

9999
.. code:: bash
100100

0 commit comments

Comments
 (0)