@@ -115,7 +115,7 @@ impl Cache {
115115 let p: Problem = problems. filter ( fid. eq ( rfid) ) . first ( & mut self . conn ( ) ?) ?;
116116 if p. category != "algorithms" {
117117 return Err ( Error :: FeatureError (
118- "Not support database and shell questions for now " . to_string ( ) ,
118+ "No support for database and shell questions yet " . to_string ( ) ,
119119 ) ) ;
120120 }
121121
@@ -129,7 +129,7 @@ impl Cache {
129129 . first ( & mut self . conn ( ) ?) ?;
130130 if p. category != "algorithms" {
131131 return Err ( Error :: FeatureError (
132- "Not support database and shell questions for now " . to_string ( ) ,
132+ "No support for database and shell questions yet " . to_string ( ) ,
133133 ) ) ;
134134 }
135135 Ok ( p. fid )
@@ -174,7 +174,7 @@ impl Cache {
174174
175175 if target. category != "algorithms" {
176176 return Err ( Error :: FeatureError (
177- "Not support database and shell questions for now " . to_string ( ) ,
177+ "No support for database and shell questions yet " . to_string ( ) ,
178178 ) ) ;
179179 }
180180
@@ -255,7 +255,7 @@ impl Cache {
255255 rfid : i32 ,
256256 test_case : Option < String > ,
257257 ) -> Result < ( HashMap < & ' static str , String > , [ String ; 2 ] ) , Error > {
258- trace ! ( "pre run code..." ) ;
258+ trace ! ( "pre- run code..." ) ;
259259 use crate :: helper:: code_path;
260260 use std:: fs:: File ;
261261 use std:: io:: Read ;
0 commit comments