We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f4fb00 commit 5f97644Copy full SHA for 5f97644
src/ast/mod.rs
@@ -1911,15 +1911,17 @@ impl fmt::Display for FetchDirection {
1911
f.write_str("FORWARD")?;
1912
1913
if let Some(l) = limit {
1914
- f.write_str(&format!(" {}", l))?;
+ f.write_str(" ")?;
1915
+ f.write_str(&l.to_string())?;
1916
}
1917
1918
FetchDirection::ForwardAll => f.write_str("FORWARD ALL")?,
1919
FetchDirection::Backward { limit } => {
1920
f.write_str("BACKWARD")?;
1921
1922
1923
1924
1925
1926
1927
FetchDirection::BackwardAll => f.write_str("BACKWARD ALL")?,
0 commit comments