Skip to content

Commit 72b96da

Browse files
committed
Fix indentation
1 parent d12b01a commit 72b96da

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ impl InnerConnection {
478478
WHERE t.oid = $1") {
479479
Ok(..) => return Ok(()),
480480
Err(Error::IoError(e)) => return Err(ConnectError::IoError(e)),
481-
// Range types weren't added until Postgres 9.2, so pg_range may not exist
481+
// Range types weren't added until Postgres 9.2, so pg_range may not exist
482482
Err(Error::DbError(ref e)) if e.code() == &SqlState::UndefinedTable => {}
483483
Err(Error::DbError(e)) => return Err(ConnectError::DbError(e)),
484484
_ => unreachable!(),

0 commit comments

Comments
 (0)