Skip to content

Commit

Permalink
Fix code formatting error in manual VAPI bindings guide
Browse files Browse the repository at this point in the history
  • Loading branch information
colinkiama committed May 5, 2024
1 parent 28e80f5 commit b5e223d
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ Consider the following:

.. code-block:: c
int div_and_mod(int a, int b, int *mod) {
*mod = a % b;
return a / b;
}
int div_and_mod(int a, int b, int *mod) {
*mod = a % b;
return a / b;
}
.. code-block:: vala
Expand Down

0 comments on commit b5e223d

Please sign in to comment.