about summary refs log tree commit diff
path: root/docs/dev
diff options
context:
space:
mode:
authorAleksey Kladov <aleksey.kladov@gmail.com>2021-07-08 17:18:44 +0300
committerAleksey Kladov <aleksey.kladov@gmail.com>2021-07-08 17:18:44 +0300
commit706bd1c35d065b0013641c8870582b68e740ef8b (patch)
treea1cf631baf2e82fb97bd68689703423e31d931b2 /docs/dev
parentf5a100e5fd753580a6b909f0d45198f0c5593c41 (diff)
downloadrust-706bd1c35d065b0013641c8870582b68e740ef8b.tar.gz
rust-706bd1c35d065b0013641c8870582b68e740ef8b.zip
minor: one more usless type
Diffstat (limited to 'docs/dev')
-rw-r--r--docs/dev/style.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md
index f83b99ca6b5..696a175a847 100644
--- a/docs/dev/style.md
+++ b/docs/dev/style.md
@@ -304,6 +304,7 @@ More generally, always prefer types on the left
 &[T]         &Vec<T>
 &str         &String
 Option<&T>   &Option<T>
+&Path        &PathBuf
 ```
 
 **Rationale:** types on the left are strictly more general.