@@ -86,15 +86,15 @@ impl SymbolManagerConfig {
86
86
///
87
87
/// The first-added directory will be searched first. Directories added here
88
88
/// are only used for reading.
89
- pub fn breakpad_symbols_dir ( mut self , dir : impl Into < PathBuf > ) -> Self {
89
+ pub fn breakpad_symbol_dir ( mut self , dir : impl Into < PathBuf > ) -> Self {
90
90
self . breakpad_directories_readonly . push ( dir. into ( ) ) ;
91
91
self
92
92
}
93
93
94
94
/// Add a server to search for breakpad symbol files, along with a local cache directory.
95
95
///
96
96
/// This method can be called multiple times; the servers and caches will be tried in the order of those calls.
97
- pub fn breakpad_symbols_server (
97
+ pub fn breakpad_symbol_server (
98
98
mut self ,
99
99
base_url : impl Into < String > ,
100
100
cache_dir : impl Into < PathBuf > ,
@@ -118,7 +118,7 @@ impl SymbolManagerConfig {
118
118
/// Add a server to search for Windows symbol files (pdb / exe / dll), along with a local cache directory.
119
119
///
120
120
/// This method can be called multiple times; the servers and caches will be tried in the order of those calls.
121
- pub fn windows_symbols_server (
121
+ pub fn windows_symbol_server (
122
122
mut self ,
123
123
base_url : impl Into < String > ,
124
124
cache_dir : impl Into < PathBuf > ,
@@ -172,7 +172,7 @@ impl SymbolManagerConfig {
172
172
173
173
/// Add an additional directory that may contain symbol files.
174
174
/// We will check "\<dir\>/\<binaryname\>" and "\<dir\>/\<debug_name\>".
175
- pub fn extra_symbols_directory ( mut self , dir : impl Into < PathBuf > ) -> Self {
175
+ pub fn extra_symbol_directory ( mut self , dir : impl Into < PathBuf > ) -> Self {
176
176
self . extra_symbol_directories . push ( dir. into ( ) ) ;
177
177
self
178
178
}
0 commit comments