Skip to content

Commit

Permalink
Remove ticks from documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
taylor-s-dean committed Jan 12, 2021
1 parent f06006e commit 8b20a67
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions gettext.go
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ func (mc *MessageCatalog) TryGettext(msgid string) (string, error) {
// The specific plural returned is determined by evaluating the Plural-Forms
// header given the specified quantity.
//
// The Plural-Forms falls back to `plural=(n==1 ? 0 : 1)` in the event that
// The Plural-Forms falls back to plural=(n==1 ? 0 : 1) in the event that
// no Plural-Forms header was provided in the .po file OR evaluation of the
// plural failed.
//
Expand All @@ -255,7 +255,7 @@ func (mc *MessageCatalog) NGettext(msgidSingular string, msgidPlural string, qua
// The specific plural returned is determined by evaluating the Plural-Forms
// header given the specified quantity.
//
// The Plural-Forms falls back to `plural=(n==1 ? 0 : 1)` in the event that
// The Plural-Forms falls back to plural=(n==1 ? 0 : 1) in the event that
// no Plural-Forms header was provided in the .po file OR evaluation of the
// plural failed.
//
Expand Down Expand Up @@ -309,7 +309,7 @@ func (mc *MessageCatalog) TryPGettext(msgctxt string, msgid string) (string, err
// The specific plural returned is determined by evaluating the Plural-Forms
// header given the specified quantity.
//
// The Plural-Forms falls back to `plural=(n==1 ? 0 : 1)` in the event that
// The Plural-Forms falls back to plural=(n==1 ? 0 : 1) in the event that
// no Plural-Forms header was provided in the .po file OR evaluation of the
// plural failed.
//
Expand All @@ -327,7 +327,7 @@ func (mc *MessageCatalog) NPGettext(msgctxt string, msgidSingular string, msgidP
// The specific plural returned is determined by evaluating the Plural-Forms
// header given the specified quantity.
//
// The Plural-Forms falls back to `plural=(n==1 ? 0 : 1)` in the event that
// The Plural-Forms falls back to plural=(n==1 ? 0 : 1) in the event that
// no Plural-Forms header was provided in the .po file OR evaluation of the
// plural failed.
//
Expand Down

0 comments on commit 8b20a67

Please sign in to comment.