Skip to content

Commit

Permalink
Circumventing bug in github Jekyll?
Browse files Browse the repository at this point in the history
  • Loading branch information
tylov committed Jan 10, 2025
1 parent 6fecb35 commit 33c0094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/algorithm_api.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ descriptive and reduces chances of making mistakes. It is generally easier to re
#define i_type IMap, int, int
#include "stc/smap.h"
// ...
IMap map = c_make(IMap, {{23,1}, {3,2}, {7,3}, {5,4}, {12,5}});
IMap map = c_make(IMap, { {23,1}, {3,2}, {7,3}, {5,4}, {12,5} });

c_foreach (i, IMap, map)
printf(" %d", i.ref->first);
Expand Down

0 comments on commit 33c0094

Please sign in to comment.