Skip to content

Commit e8c5d27

Browse files
authored
Merge pull request #1339 from gokhanettin/add-missing-triple-backticks
Add missing triple backticks
2 parents 05c59cb + a8293dc commit e8c5d27

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/testing/doc_testing.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ to the rescue: one may write `fn try_main() -> Result<(), ErrorType>`, hide it a
8989
/// # try_main().unwrap(); // calling try_main and unwrapping
9090
/// # // so that test will panic in case of error
9191
/// # }
92+
/// ```
9293
pub fn try_div(a: i32, b: i32) -> Result<i32, String> {
9394
if b == 0 {
9495
Err(String::from("Divide-by-zero"))

0 commit comments

Comments
 (0)