We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd1f8b2 commit 47c8a3dCopy full SHA for 47c8a3d
generator/src/dbscheme.rs
@@ -102,7 +102,7 @@ pub fn escape_name(name: &str) -> String {
102
}
103
104
/// Generates the dbscheme by writing the given dbscheme `entries` to the `file`.
105
-pub fn write(file: &mut dyn std::io::Write, entries: &[Entry]) -> Result<(), std::io::Error> {
+pub fn write(file: &mut dyn std::io::Write, entries: &[Entry]) -> std::io::Result<()> {
106
write!(file, "// CodeQL database schema for Ruby\n")?;
107
write!(
108
file,
0 commit comments