]> git.basschouten.com Git - openhab-addons.git/commitdiff
[energidataservice] Fix JRuby tabs (#17005)
authorJacob Laursen <jacob-github@vindvejr.dk>
Sat, 6 Jul 2024 18:52:27 +0000 (20:52 +0200)
committerGitHub <noreply@github.com>
Sat, 6 Jul 2024 18:52:27 +0000 (20:52 +0200)
* Fix JRuby tabs
* Fix Rule DSL example after breaking changes in PersistenceExtensions

Signed-off-by: Jacob Laursen <jacob-github@vindvejr.dk>
bundles/org.openhab.binding.energidataservice/README.md

index 54ee27c0ac35d10929af8398d073b95aa185d369..84b9d699f726a4f157d68fc26acd9473598757cc 100644 (file)
@@ -440,7 +440,7 @@ var result = edsActions.calculateCheapestPeriod(time.Instant.now(), time.Instant
 
 :::
 
-::: tabs JRuby
+::: tab JRuby
 
 ```ruby
 duration_phases = [37, 8, 4, 2, 4, 36, 41, 104].map { |duration| duration.minutes }
@@ -528,7 +528,7 @@ var result = edsActions.calculateCheapestPeriod(time.Instant.now(), time.Instant
 
 :::
 
-::: tabs JRuby
+::: tab JRuby
 
 ```ruby
 duration_phases = [37, 8, 4, 2, 4, 36, 41].map { |duration| duration.minutes }
@@ -899,7 +899,7 @@ result = eds.calculate_cheapest_period(ZonedDateTime.now.to_instant,
 
 ```java
 var hourStart = now.plusHours(2).truncatedTo(ChronoUnit.HOURS)
-var price = SpotPrice.historicState(hourStart).state
+var price = SpotPrice.persistedState(hourStart).state
 logInfo("Spot price two hours from now", price.toString)
 ```