Indicate that code block is of type Rust

This commit is contained in:
bitfl0wer 2023-04-05 22:19:15 +02:00
parent 08d096e763
commit 17a618e8f0
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ impl URLBundle {
/// parse(url: String) parses a URL using the Url library and formats it in a standardized /// parse(url: String) parses a URL using the Url library and formats it in a standardized
/// way. If no protocol is given, HTTP (not HTTPS) is assumed. /// way. If no protocol is given, HTTP (not HTTPS) is assumed.
/// # Example: /// # Example:
/// ``` /// ```rs
/// let url = parse_url("localhost:3000"); /// let url = parse_url("localhost:3000");
/// println!("{}", url); /// println!("{}", url);
/// ``` /// ```