summaryrefslogtreecommitdiffhomepage
path: root/README.md
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2022-08-07 08:03:46 +0200
committerTyge Løvset <[email protected]>2022-08-07 08:20:34 +0200
commitc87898773d1af364a9847610401a9959f6019fe7 (patch)
tree5e64c9d96fb9e12192ce298f1d2909d43b72571a /README.md
parent618b5704e6f85cfe1b6e5c9c9373abe76a8bb628 (diff)
downloadSTC-modified-c87898773d1af364a9847610401a9959f6019fe7.tar.gz
STC-modified-c87898773d1af364a9847610401a9959f6019fe7.zip
Internal: moved some functions in csview/cstr to implementation sections.
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index 62a60045..86187575 100644
--- a/README.md
+++ b/README.md
@@ -204,8 +204,8 @@ int main(void) {
c_auto (csmap_int, map)
{
int nums[4] = {10, 20, 30, 40};
- struct Point pts[4] = { {10, 1}, {20, 2}, {30, 3}, {40, 4} };
- int pairs[4][2] = { {20, 2}, {10, 1}, {30, 3}, {40, 4} };
+ struct Point pts[4] = {{10, 1}, {20, 2}, {30, 3}, {40, 4}};
+ int pairs[4][2] = {{20, 2}, {10, 1}, {30, 3}, {40, 4}};
/* add some elements to each container */
for (int i = 0; i < 4; ++i) {