From 76b17d9b327277637f1c27693f6d62a728beb918 Mon Sep 17 00:00:00 2001 From: Pavel Kirienko Date: Fri, 22 Feb 2019 22:40:54 +0200 Subject: [PATCH] Typo in readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 961a13b..999b9b0 100644 --- a/README.md +++ b/README.md @@ -98,7 +98,7 @@ void accessExample() // even if their traced values don't exist at the time of calling. assert(legilimens::findCategoryByName("my_class.a")); // Non-null even if there are no instances of MyClass assert(legilimens::findCategoryByName("foo.local")); // Non-null even if foo() is never invoked - assert(legilimens::findCategoryByIndex(3)); // Non-null because there are >3 probes + assert(legilimens::findCategoryByIndex(3)); // Non-null because there are >3 probe categories } ```