aboutsummaryrefslogtreecommitdiff
path: root/crates/syntax/src
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2020-08-22 20:03:02 +0100
committerKirill Bulatov <[email protected]>2020-08-22 20:03:02 +0100
commitcdd75a699aaa9dbf971a8c6b0d59b36c5b6b49e6 (patch)
tree8e587c224f83c6046eb5d0afc0bd209362fc94c0 /crates/syntax/src
parente65d48d1fb3d4d91d9dc1148a7a836ff5c9a3c87 (diff)
Omit lenses for not runnable doctests
Diffstat (limited to 'crates/syntax/src')
-rw-r--r--crates/syntax/src/algo.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/syntax/src/algo.rs b/crates/syntax/src/algo.rs
index 6254b38ba..ea199f9b8 100644
--- a/crates/syntax/src/algo.rs
+++ b/crates/syntax/src/algo.rs
@@ -32,7 +32,7 @@ pub fn ancestors_at_offset(
32/// imprecise: if the cursor is strictly between two nodes of the desired type, 32/// imprecise: if the cursor is strictly between two nodes of the desired type,
33/// as in 33/// as in
34/// 34///
35/// ```no-run 35/// ```no_run
36/// struct Foo {}|struct Bar; 36/// struct Foo {}|struct Bar;
37/// ``` 37/// ```
38/// 38///