From 38517c09d061d01ab4913c25b56798bec83e8d47 Mon Sep 17 00:00:00 2001 From: Kirottu Date: Fri, 2 Jun 2023 23:02:05 +0300 Subject: [PATCH] Fix broken example plugin --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 58b2485..358b52e 100644 --- a/README.md +++ b/README.md @@ -212,9 +212,9 @@ fn get_matches(input: RString) -> RVec { // The `data` is a mutable reference to the shared data type later specified. vec![Match { title: "Test match".into(), - icon: ROption::RSome("help-about"), + icon: ROption::RSome("help-about".into()), use_pango: false, - description: ROption::RSome("Test match for the plugin API demo"), + description: ROption::RSome("Test match for the plugin API demo".into()), id: ROption::RNone, // The ID can be used for identifying the match later, is not required }].into() }