From 4b7596ba8e0590d0b7b6324b59555d448240f0d8 Mon Sep 17 00:00:00 2001 From: Max Notarangelo Date: Thu, 2 Dec 2021 13:46:11 -0800 Subject: [PATCH] docs: bitstring attributes are strings [ci-skip] --- guides/source/active_record_postgresql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/active_record_postgresql.md b/guides/source/active_record_postgresql.md index 27e158186b..934986f676 100644 --- a/guides/source/active_record_postgresql.md +++ b/guides/source/active_record_postgresql.md @@ -399,7 +399,7 @@ irb> user.settings => "01010011" irb> user.settings = "0xAF" irb> user.settings -=> 10101111 +=> "10101111" irb> user.save! ```