diff --git a/lib/livebook/notebook/learn/intro_to_maplibre.livemd b/lib/livebook/notebook/learn/intro_to_maplibre.livemd index a8f50e2a1583..e4aa38b264c1 100644 --- a/lib/livebook/notebook/learn/intro_to_maplibre.livemd +++ b/lib/livebook/notebook/learn/intro_to_maplibre.livemd @@ -11,10 +11,10 @@ Mix.install([ To work with maps in Livebook we need two libraries: -* The [`maplibre`](https://github.com/cristineguadelupe/maplibre) +* The [`maplibre`](https://github.com/livebook-dev/maplibre) package allows us to define our map style specifications -* The [`kino_maplibre`](https://github.com/cristineguadelupe/Kino_maplibre) package instructs Livebook how to render our specifications and also provides some initial support for [MapLibre Evented API](https://maplibre.org/maplibre-gl-js-docs/api/events/#evented) +* The [`kino_maplibre`](https://github.com/livebook-dev/kino_maplibre) package instructs Livebook how to render our specifications and also provides some initial support for [MapLibre Evented API](https://maplibre.org/maplibre-gl-js-docs/api/events/#evented) We will make extensive use of MapLibre's functions, so it's handy to alias the module to something shorter. diff --git a/lib/livebook/notebook/learn/intro_to_vega_lite.livemd b/lib/livebook/notebook/learn/intro_to_vega_lite.livemd index 2dc5f6e12a82..240a5a64c13a 100644 --- a/lib/livebook/notebook/learn/intro_to_vega_lite.livemd +++ b/lib/livebook/notebook/learn/intro_to_vega_lite.livemd @@ -14,7 +14,7 @@ We need two libraries for plotting in Livebook: * The [`vega_lite`](https://github.com/elixir-nx/vega_lite) package allows us to define our graph specifications -* The [`kino_vega_lite`](https://github.com/elixir-nx/kino) package +* The [`kino_vega_lite`](https://github.com/livebook-dev/kino_vega_lite) package instructs Livebook how to render our specifications Let's install them by running the setup cell above.