Standardise start/end comment tags (to our internal format) (#20)

This commit is contained in:
Andrew Scheller
2021-01-28 16:05:03 +00:00
committed by GitHub
parent 2b0aa6bc79
commit 3f8bff094d
9 changed files with 23 additions and 23 deletions

View File

@@ -29,7 +29,7 @@ int main() {
stdio_init_all();
printf("Hello, multicore!\n");
///tag::setup_multicore[]
/// \tag::setup_multicore[]
multicore_launch_core1(core1_entry);
@@ -44,5 +44,5 @@ int main() {
printf("It's all gone well on core 0!");
}
///end::setup_multicore[]
}
/// \end::setup_multicore[]
}