Skip to content

Commit b15009d

Browse files
committed
style: Properly wrap comments
1 parent 58fbb11 commit b15009d

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

examples/intro_to_modeling.clj

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -401,7 +401,8 @@
401401

402402
;; ### 2.1 Exercise
403403

404-
;; Write a generative function that uses the same address twice. Run it to see what happens.
404+
;; Write a generative function that uses the same address twice. Run it to see
405+
;; what happens.
405406

406407
;; ### 2.2 Exercise
407408

@@ -425,7 +426,9 @@
425426
(require '[clojure.math :as math])
426427
math/PI
427428

428-
;; When calling `(trace/choices (gf/simulate sine-model [xs]))`, the following choices should appear:
429+
;; When calling `(trace/choices (gf/simulate sine-model [xs]))`, the following
430+
;; choices should appear:
431+
429432
;; - amplitude: `(trace :amplitude)`
430433
;; - period: `(trace :period)`
431434
;; - phase: `(trace :phase)`
@@ -1240,7 +1243,8 @@ math/PI
12401243
(->> (prepeatedly 12 #(do-inference changepoint-model xs-dense ys-complex 100000))
12411244
(grid {:width 3} render-changepoint-model-trace))))
12421245

1243-
;; The results show that more segments are inferred for the more complex data set.
1246+
;; The results show that more segments are inferred for the more complex data
1247+
;; set.
12441248

12451249
;; ### 6.1 Exercise
12461250

0 commit comments

Comments
 (0)