]> git.lizzy.rs Git - rust.git/blobdiff - src/librustc_metadata/dynamic_lib.rs
Rollup merge of #61409 - varkor:condition-trait-param-ice, r=oli-obk
[rust.git] / src / librustc_metadata / dynamic_lib.rs
index b9dc4195cb228dbbba9a28bc4dc952405ae16b98..9dd160c24c37397fb7f46b9201d4aae30aed83a4 100644 (file)
@@ -32,7 +32,7 @@ pub fn open(filename: Option<&Path>) -> Result<DynamicLibrary, String> {
         }
     }
 
-    /// Load a dynamic library into the global namespace (RTLD_GLOBAL on Unix)
+    /// Loads a dynamic library into the global namespace (RTLD_GLOBAL on Unix)
     /// and do it now (don't use RTLD_LAZY on Unix).
     pub fn open_global_now(filename: &Path) -> Result<DynamicLibrary, String> {
         let maybe_library = dl::open_global_now(filename.as_os_str());