Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 35e50f8

Browse files
authored
Merge pull request rust-postgres#1305 from ybjeon01/typo
Fix typo in comment for frontend message
2 parents df41772 + b2f732e commit 35e50f8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

postgres-protocol/src/message/frontend.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ where
259259
I: IntoIterator<Item = (&'a str, &'a str)>,
260260
{
261261
write_body(buf, |buf| {
262-
// postgres protocol version 3.0(196608) in bigger-endian
262+
// postgres protocol version 3.0(196608) in big-endian
263263
buf.put_i32(0x00_03_00_00);
264264
for (key, value) in parameters {
265265
write_cstr(key.as_bytes(), buf)?;

0 commit comments

Comments
 (0)