From 9f6966d7f207e328527cd38ccc95dac717ee39f9 Mon Sep 17 00:00:00 2001 From: Michael Noronha Date: Sun, 8 Jul 2018 10:09:59 -0700 Subject: [PATCH] Add missing semicolon in integration tests post (#455) --- blog/content/second-edition/posts/05-integration-tests/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/blog/content/second-edition/posts/05-integration-tests/index.md b/blog/content/second-edition/posts/05-integration-tests/index.md index d8648120..7a2b8352 100644 --- a/blog/content/second-edition/posts/05-integration-tests/index.md +++ b/blog/content/second-edition/posts/05-integration-tests/index.md @@ -77,7 +77,7 @@ The `uart_16550` crate contains a `SerialPort` struct that represents the UART r ```rust // in src/main.rs -mod serial +mod serial; ``` ```rust