From 8c86fc8975c47b904d1a0e4c04278164bb2f7d84 Mon Sep 17 00:00:00 2001 From: John Sullivan Date: Wed, 24 Apr 2019 09:37:37 -0500 Subject: [PATCH] Fix `Object.range` to intended `List.range` --- docs/docs/usage/dottydoc.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/docs/usage/dottydoc.md b/docs/docs/usage/dottydoc.md index 9b4ab4a30a66..dcf056a7d57b 100644 --- a/docs/docs/usage/dottydoc.md +++ b/docs/docs/usage/dottydoc.md @@ -192,11 +192,11 @@ Linking to members is done in the same fashion: [Seq](scala.collection.immutable.Seq.isEmpty) ``` -Dottydoc denotes objects by ending their names in "$". To select `Object.range` -you would therefore write: +Dottydoc denotes objects by ending their names in "$". To select `List.range` +you'd therefore write: ```markdown -[Object.range](scala.collection.immutable.List$.range) +[List.range](scala.collection.immutable.List$.range) ``` Rendering Docstrings