From 0de12878f8e031ae67c6190fe41d728b419d4399 Mon Sep 17 00:00:00 2001 From: lemontheme Date: Sun, 9 Feb 2025 14:14:47 +0100 Subject: [PATCH] Reformat unintended doctest in docs --- docs/tutorials.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorials.md b/docs/tutorials.md index 2ea94384..032a1b26 100644 --- a/docs/tutorials.md +++ b/docs/tutorials.md @@ -269,8 +269,8 @@ We can check that our new analyzer is working as expected by passing some text to its `.analyze()` method. ```python ->>> my_analyzer.analyze('www.this1website1might1exist.com') -['this', 'website', 'might', 'exist'] +# Will print: ['this', 'website', 'might', 'exist'] +my_analyzer.analyze('www.this1website1might1exist.com') ``` The next step is to register our analyzer with an index. Let's