You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rcgen/src/lib.rs
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -338,10 +338,10 @@ impl DistinguishedName {
338
338
self.entries.push((ty, s.into()));
339
339
}
340
340
341
-
/// Replaces the *fist occurrence* of a type with a new value.
341
+
/// Replaces the *first occurrence* of a type with a new value.
342
342
/// This is a convenience function to avoid duplicating values.
343
343
///
344
-
/// If there are multiple occurrences of a type there is currently no way of changing the besides iterating over the types and values of an existing instance and creating a new instance.
344
+
/// If there are multiple occurrences of a type there is currently no way of changing them besides iterating over the types and values of an existing instance and creating a new instance.
345
345
///
346
346
/// ```
347
347
/// # use rcgen::{DistinguishedName, DnType, DnValue};
0 commit comments