summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorSheena Artrip <sheena.artrip@gmail.com>2021-05-01 20:04:05 -0700
committerRaphael Megzari <raphael@megzari.com>2021-08-26 09:46:38 +0900
commit91106928cfa3f16b8fc1207543b3fbe0e070f9a8 (patch)
tree9113ff0a4ceeb32eb10737b0470661a6b18b68ac /doc
parent6aeefc823a76fa6f8d7c1ca1209f1833698ed085 (diff)
doc/beam: fix syntax error in nix sample
Diffstat (limited to 'doc')
-rw-r--r--doc/languages-frameworks/beam.section.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/languages-frameworks/beam.section.md b/doc/languages-frameworks/beam.section.md
index 934e6cdca121..08abd4588c64 100644
--- a/doc/languages-frameworks/beam.section.md
+++ b/doc/languages-frameworks/beam.section.md
@@ -212,7 +212,7 @@ in
Usually, we need to create a `shell.nix` file and do our development inside of the environment specified therein. Just install your version of Erlang and any other interpreters, and then use your normal build tools. As an example with Elixir:
```nix
-{ pkgs ? import "<nixpkgs"> {} }:
+{ pkgs ? import <nixpkgs> {} }:
with pkgs;