Commit 52e6e11e authored by MozLando's avatar MozLando
Browse files

Merge #5493



5493: Fix change log SharedIdHelper code snippet r=jonalmeida a=rocketsroger



Co-authored-by: default avatarRoger Yang <royang@mozilla.com>
parents 7c163d86 b672452e
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -97,10 +97,10 @@ permalink: /changelog/

  ```kotlin
  // Get a unique id for the provided tag
  val id = NotificationIds.getIdForTag(context, "mozac.my.feature")
  val id = SharedIdsHelper.getIdForTag(context, "mozac.my.feature")

  // Get the next unique id for the provided tag
  val id = NotificationIds.getNextIdForTag(context, "mozac.my.feature")
  val id = SharedIdsHelper.getNextIdForTag(context, "mozac.my.feature")
  ```

# 26.0.0