Explorar el Código

book/development: Note about +nightly.

parazyd hace 4 años
padre
commit
e86620b789
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      book/src/development.md

+ 1 - 1
book/src/development.md

@@ -32,7 +32,7 @@ to do this by creating a git `pre-commit` hook like the following:
 ```shell
 ```shell
 #!/bin/sh
 #!/bin/sh
 if ! cargo +nightly fmt -- --check >/dev/null; then
 if ! cargo +nightly fmt -- --check >/dev/null; then
-    echo "There are some code style issues. Run 'cargo fmt' to fix it."
+    echo "There are some code style issues. Run 'cargo +nightly fmt' to fix it."
     exit 1
     exit 1
 fi
 fi