diff --git a/README.md b/README.md
index 9454db4..10003e5 100644
--- a/README.md
+++ b/README.md
@@ -209,9 +209,15 @@ It enables you to write code that is **information-verbose by default**.
- Telemere [compared](../../wiki/5-Migrating#from-timbre) to [Timbre](https://www.taoensso.com/timbre) (Telemere's predecessor)
- Telemere [compared](../../wiki/6-FAQ#how-does-telemere-compare-to-mulog) to [Mulog](https://github.com/BrunoBonacci/mulog) (Structured micro-logging library)
-## Video demo
+## Videos
-See for intro and basic usage:
+### Lightning intro (7 mins):
+
+
+
+
+
+### REPL demo (24 mins):
diff --git a/examples.cljc b/examples.cljc
index b3a7e1e..efc20f8 100644
--- a/examples.cljc
+++ b/examples.cljc
@@ -327,7 +327,7 @@
(t/log! (str "This message " "was built " "by `str`"))
;; %> {:msg "This message was built by `str`"}
-(t/log! (format "This message was built by `%s`" "format"))
+(t/log! (enc/format "This message was built by `%s`" "format"))
;; %> {:msg "This message was built by `format`"}
;;; App-level kvs
diff --git a/projects/main/resources/signal-docstrings/signal-options.txt b/projects/main/resources/signal-docstrings/signal-options.txt
index 6255da7..23e90ff 100644
--- a/projects/main/resources/signal-docstrings/signal-options.txt
+++ b/projects/main/resources/signal-docstrings/signal-options.txt
@@ -11,7 +11,7 @@ Signal options (shared by all signal creators):
`:data` -------- Arb app-level ?data to incl. in signal: usu. a map
`:error` ------- Arb app-level ?error to incl. in signal: platform error [2]
-`:run` --------- ?form to execute UNCONDITIONALLY; will incl. `:run-value` in signal
+`:run` --------- ?form to execute UNCONDITIONALLY; will incl. `:run-val` in signal
`:do` ---------- ?form to execute conditionally (iff signal allowed), before establishing `:let` ?binding
`:let` --------- ?bindings to establish conditionally (iff signal allowed), BEFORE evaluating `:data` and `:msg` (useful!)
diff --git a/projects/main/src/taoensso/telemere.cljc b/projects/main/src/taoensso/telemere.cljc
index 8b9e3c7..9e72cc5 100644
--- a/projects/main/src/taoensso/telemere.cljc
+++ b/projects/main/src/taoensso/telemere.cljc
@@ -185,7 +185,7 @@
:via :global}))))))
#?(:clj
- (def ^:dynamic ^:no-doc *otel-tracer*
+ (def ^:dynamic *otel-tracer*
"Experimental, subject to change. Feedback welcome!
OpenTelemetry `Tracer` to use for Telemere's tracing signal creators
diff --git a/wiki/3-Config.md b/wiki/3-Config.md
index 01beb46..df15c33 100644
--- a/wiki/3-Config.md
+++ b/wiki/3-Config.md
@@ -103,19 +103,19 @@ Aside from configuring the exporters (2), Telemere's OpenTelemetry interop **doe
## Tufte
-> [Tufte](https:/www.taoensso.com/tufte) is a simple performance monitoring library for Clojure/Script by the author of Telemere.
+> [Tufte](https://www.taoensso.com/tufte) is a simple performance monitoring library for Clojure/Script by the author of Telemere.
Telemere can easily incorporate Tufte performance data in its signals, just like any other data:
```clojure
(let [[_ perf-data] (tufte/profiled