Skip to content

Commit a35729e

Browse files
committed
Fixup formatting.
1 parent 063028b commit a35729e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -614,15 +614,15 @@ The `verify!` call may raise `Slack::Events::Request::MissingSigningSecret`, `Sl
614614

615615
### Message Handling
616616

617-
All text in Slack uses the same [system of Formatting and escaping](https://api.slack.com/docs/formatting): chat messages, direct messages, file comments, etc. [Slack::Messages::Formatting](lib/slack/messages/formatting.rb) provides convenience methods to format and parse messages.
617+
All text in Slack uses the same [system of formatting and escaping](https://api.slack.com/docs/formatting): chat messages, direct messages, file comments, etc. [Slack::Messages::Formatting](lib/slack/messages/formatting.rb) provides convenience methods to format and parse messages.
618618

619619
#### Formatting Messages
620620

621-
`Slack::Messages::Formatting` provides a number of methods for Formatting objects that you can then embed in outgoing messages.
621+
`Slack::Messages::Formatting` provides a number of methods for formatting objects that you can then embed in outgoing messages.
622622

623623
##### Date and Time Formatting
624624

625-
You can embed a pre-formatted date in a message as a string like any other text, but using Slack's date Formatting allows you to display dates based on user preferences for dates and times, incorporating users' local time zones, and optionally using relative values like "yesterday", "today", or "tomorrow" when appropriate.
625+
You can embed a pre-formatted date in a message as a string like any other text, but using Slack's date formatting allows you to display dates based on user preferences for dates and times, incorporating users' local time zones, and optionally using relative values like "yesterday", "today", or "tomorrow" when appropriate.
626626

627627
```ruby
628628
date = Time.now
@@ -667,7 +667,7 @@ Slack::Messages::Formatting.user_link(user_id)
667667

668668
##### URL Formatting
669669

670-
Slack will automatically parse fully qualified URLs in messages, but you need special Formatting to embed a link with different text.
670+
Slack will automatically parse fully qualified URLs in messages, but you need special formatting to embed a link with different text.
671671

672672
```ruby
673673
text = 'party time'
@@ -678,7 +678,7 @@ Slack::Messages::Formatting.url_link(text, url)
678678

679679
##### Markdown Formatting
680680

681-
Slack uses a mishmash of regular markdown Formatting with its own syntax. Some features like headings aren't supported and will be left as-is, but others like bold, strikethrough, and links are converted.
681+
Slack uses a mishmash of regular markdown formatting with its own syntax. Some features like headings aren't supported and will be left as-is, but others like bold, strikethrough, and links are converted.
682682

683683
```ruby
684684
text = """

0 commit comments

Comments
 (0)