Skip to content

Commit 9fd3866

Browse files
committed
Fix typo in documentation comment
1 parent 40c6f9b commit 9fd3866

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core/src/utils/sql_buffer.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ impl SqlBuffer {
8282
self.push_str(" FOR EACH ROW ");
8383
}
8484

85-
/// Writes an `INSTEAD OF $write_type ON $on FOR EACH ROW` segment.
85+
/// Writes an `AFTER $write_type ON $on FOR EACH ROW` segment.
8686
pub fn trigger_after(&mut self, write_type: WriteType, on: &str) {
8787
let _ = write!(self, "AFTER {write_type} ON ");
8888
let _ = self.identifier().write_str(on);

0 commit comments

Comments
 (0)