Skip to content

Commit

Permalink
fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinWoodring committed Sep 29, 2023
1 parent 219203d commit e2b1ba7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clientapp/src/pages/docs/BuildingAPlugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export default function BuildingAPlugin() {
"examples": [
{
"title": "Using assert to verify expected behavior",
"code": "#include <stdio.html>\n\nint main(int argc, char ** argv){\nassert(1==1)\n}\n"
"code": "#include <stdio.html>\\n\\nint main(int argc, char ** argv){\\nassert(1==1)\\n}\\n"
}
]
}
Expand Down Expand Up @@ -273,7 +273,7 @@ export default function BuildingAPlugin() {
"examples": [
{
"title": "Using strcat to concatenate two strings.",
"code": "#include <stdio.html>\n\nint main(int argc, char ** argv){\nchar buffer[50] = "Hello";\nchar append[50] = "World";\nstrcat(buffer,append);\n}\n"
"code": "#include <stdio.html>\\n\\nint main(int argc, char ** argv){\\nchar buffer[50] = "Hello";\\nchar append[50] = "World";\\nstrcat(buffer,append);\\n}\\n"
}
]
"associated": [ //This contains a list of associated functions think of like a see also.
Expand Down

0 comments on commit e2b1ba7

Please sign in to comment.