Skip to content

Commit

Permalink
fix(specs): adjust style for banner descriptions (generated)
Browse files Browse the repository at this point in the history
algolia/api-clients-automation#4362

Co-authored-by: algolia-bot <accounts+algolia-api-client-bot@algolia.com>
Co-authored-by: Kai Welke <kai.welke@algolia.com>
Co-authored-by: Pierre Millot <pierre.millot@algolia.com>
  • Loading branch information
3 people committed Jan 16, 2025
1 parent 376362b commit e92ad01
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion src/main/scala/algoliasearch/recommend/Banner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
package algoliasearch.recommend

/** a search banner with image and url.
/** Banner with image and link to redirect users.
*/
case class Banner(
image: Option[BannerImage] = scala.None,
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/algoliasearch/recommend/BannerImage.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
package algoliasearch.recommend

/** image of a search banner.
/** Image to show inside a banner.
*/
case class BannerImage(
urls: Option[Seq[BannerImageUrl]] = scala.None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
package algoliasearch.recommend

/** url for a search banner image.
/** URL for an image to show inside a banner.
*/
case class BannerImageUrl(
url: Option[String] = scala.None
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/algoliasearch/recommend/BannerLink.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
*/
package algoliasearch.recommend

/** link for a banner defined in merchandising studio.
/** Link for a banner defined in the Merchandising Studio.
*/
case class BannerLink(
url: Option[String] = scala.None
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/algoliasearch/recommend/Widgets.scala
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
*/
package algoliasearch.recommend

/** widgets returned from any rules that are applied to the current search.
/** Widgets returned from any rules that are applied to the current search.
*
* @param banners
* banners defined in the merchandising studio for the given search.
* Banners defined in the Merchandising Studio for a given search.
*/
case class Widgets(
banners: Option[Seq[Banner]] = scala.None
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/algoliasearch/search/Banner.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
package algoliasearch.search

/** a search banner with image and url.
/** Banner with image and link to redirect users.
*/
case class Banner(
image: Option[BannerImage] = scala.None,
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/algoliasearch/search/BannerImage.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
package algoliasearch.search

/** image of a search banner.
/** Image to show inside a banner.
*/
case class BannerImage(
urls: Option[Seq[BannerImageUrl]] = scala.None,
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/algoliasearch/search/BannerImageUrl.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
package algoliasearch.search

/** url for a search banner image.
/** URL for an image to show inside a banner.
*/
case class BannerImageUrl(
url: Option[String] = scala.None
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/algoliasearch/search/BannerLink.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
*/
package algoliasearch.search

/** link for a banner defined in merchandising studio.
/** Link for a banner defined in the Merchandising Studio.
*/
case class BannerLink(
url: Option[String] = scala.None
Expand Down
4 changes: 2 additions & 2 deletions src/main/scala/algoliasearch/search/Widgets.scala
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@
*/
package algoliasearch.search

/** widgets returned from any rules that are applied to the current search.
/** Widgets returned from any rules that are applied to the current search.
*
* @param banners
* banners defined in the merchandising studio for the given search.
* Banners defined in the Merchandising Studio for a given search.
*/
case class Widgets(
banners: Option[Seq[Banner]] = scala.None
Expand Down

0 comments on commit e92ad01

Please sign in to comment.