aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Alex Martens <alexmgit@protonmail.com> 2021-07-01 17:09:07 -0700
committerGravatar Alex Martens <alexmgit@protonmail.com> 2021-07-01 17:09:07 -0700
commit1beeebd79745407edf1861822a80613481c99dbc (patch)
treee18cc6e7fef6fe7bfc13e73bdc4a3cd995ddbd06
parentf0273d1c0f825c8b294f6dcef2f8bb1efadec538 (diff)
downloadrtic-1beeebd79745407edf1861822a80613481c99dbc.tar.gz
rtic-1beeebd79745407edf1861822a80613481c99dbc.tar.zst
rtic-1beeebd79745407edf1861822a80613481c99dbc.zip
Fix syntax error in migration guide
-rw-r--r--book/en/src/migration/migration_v5.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/book/en/src/migration/migration_v5.md b/book/en/src/migration/migration_v5.md
index 505a8b6c..d3f2c9a6 100644
--- a/book/en/src/migration/migration_v5.md
+++ b/book/en/src/migration/migration_v5.md
@@ -68,7 +68,7 @@ mod app {
fn func() {
super::some_crate::some_func();
}
-};
+}
```
## Move Dispatchers from `extern "C"` to app arguments.