@@ -9,7 +9,7 @@ auto write_file_settings() {
9
9
file.top_file_comment (" Settings file used by file_settings example.\n Copyright (c) 2024 Gammasoft. All rights reserved." );
10
10
file.write (" auto_close" , true );
11
11
file.write (" caption" , " file_settings example" );
12
- file.write (" Thread \" Process\" " , " timeout_ " , 100_ms);
12
+ file.write (" Thread \" Process\" " , " timeout " , 100_ms);
13
13
file.save ();
14
14
}
15
15
@@ -27,7 +27,7 @@ auto read_file_settings() {
27
27
console::write_line (" read keys :" );
28
28
console::write_line (" auto_close = {}" , file.read (" auto_close" , false ));
29
29
console::write_line (" caption = {}" , file.read (" caption" , " example" ));
30
- console::write_line (" Thread \" Process\" " , " time_out = {}" , file.read (" timeout_ " , 50_ms));
30
+ console::write_line (" Thread \" Process\" " , " time_out = {}" , file.read (" timeout " , 50_ms));
31
31
console::write_line (" ----------------------------------------" );
32
32
}
33
33
@@ -49,7 +49,7 @@ auto main() -> int {
49
49
// caption = file_settings example
50
50
//
51
51
// [Thread "Process"]
52
- // timeout_ = 00:00:00.1000000
52
+ // timeout = 00:00:00.1000000
53
53
//
54
54
// ----------------------------------------
55
55
// read keys :
0 commit comments