Verified Commit 78d943be authored by Hercules Merscher's avatar Hercules Merscher 🌴
Browse files

fix: Replacement covered experience references in docstrings

parent 8dd6dbb2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -77,7 +77,7 @@ module Labkit
        reset_configuration
      end

      # Retrieves a covered experience using the experience_id.
      # Retrieves a user experience using the experience_id.
      # It retrieves from the current context when available,
      # otherwise it instantiates a new experience with the definition
      # from the registry.
@@ -88,7 +88,7 @@ module Labkit
        find_current(experience_id) || raise_or_null(experience_id)
      end

      # Starts a covered experience using the experience_id.
      # Starts a user experience using the experience_id.
      #
      # @param experience_id [String, Symbol] The ID of the experience to start.
      # @param extra [Hash] Additional data to include in the log event.
@@ -97,7 +97,7 @@ module Labkit
        get(experience_id).start(**extra, &)
      end

      # Resumes a covered experience using the experience_id.
      # Resumes a user experience using the experience_id.
      #
      # @param experience_id [String, Symbol] The ID of the experience to resume.
      # @return [Experience, Null] The started experience or a Null object if not found (in production/staging).