Fix broken markup in query_to_str documentation

This commit is contained in:
Florian Hartwig 2014-05-31 17:46:35 +02:00
parent 0839e940a5
commit 096f80e770
1 changed files with 2 additions and 2 deletions

View File

@ -452,8 +452,8 @@ fn query_from_str(rawquery: &str) -> Query {
*
* ```rust
* let query = vec!(("title".to_string(), "The Village".to_string()),
("north".to_string(), "52.91".to_string()),
("west".to_string(), "4.10".to_string()));
* ("north".to_string(), "52.91".to_string()),
* ("west".to_string(), "4.10".to_string()));
* println!("{}", url::query_to_str(&query)); // title=The%20Village&north=52.91&west=4.10
* ```
*/