Skip to content

Commit cca51e8

Browse files
committed
Fix typo/whitespace in User class comment
1 parent 4746b59 commit cca51e8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/intercom/user.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ module Intercom
88
#
99
# == Example usage
1010
# * Fetching a user
11-
# Intercom::User.find_by_email("bob@example.")
11+
# Intercom::User.find_by_email("bob@example.com")
1212
#
1313
# * Getting the count of all users
1414
# Intercom::User.all.count
1515
#
1616
# * Fetching all users
17-
# Intercom::User.all.each {|user| puts user.email }
17+
# Intercom::User.all.each { |user| puts user.email }
1818
#
1919
# * Updating custom data on a user
2020
# user = Intercom::User.find_by_email("bob@example.com")

0 commit comments

Comments
 (0)