File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ impl<'a> CertificateBuilder<'a> {
98
98
/// # Arguments:
99
99
///
100
100
/// * days_from_now (u32): The number of days from now when the built certificate will become
101
- /// valid
101
+ /// valid
102
102
pub fn not_before (
103
103
& ' a mut self ,
104
104
days_from_now : u32 ,
@@ -125,7 +125,7 @@ impl<'a> CertificateBuilder<'a> {
125
125
/// # Arguments:
126
126
///
127
127
/// * version (i32): The version number. Note that the version is zero-indexed, meaning passing
128
- /// the value `2` corresponds to the version 3 of the X.509 standard
128
+ /// the value `2` corresponds to the version 3 of the X.509 standard
129
129
///
130
130
/// If not called, the version 3 of the X.509 standard will be used
131
131
pub fn version (
@@ -154,7 +154,7 @@ impl<'a> CertificateBuilder<'a> {
154
154
/// # Arguments:
155
155
///
156
156
/// * dns_names (Vec<&str>): A Vec<&str> containing DNS names to add to the certificate Subject
157
- /// Alternative Name
157
+ /// Alternative Name
158
158
pub fn add_dns_names (
159
159
& ' a mut self ,
160
160
dns_names : Vec < & ' a str > ,
@@ -177,7 +177,7 @@ impl<'a> CertificateBuilder<'a> {
177
177
/// # Arguments:
178
178
///
179
179
/// * ips: (Vec<&str>): A Vec<&str> containing IPs to add to the certificate Subject
180
- /// Alternative Name
180
+ /// Alternative Name
181
181
pub fn add_ips (
182
182
& ' a mut self ,
183
183
ips : Vec < & ' a str > ,
@@ -200,7 +200,7 @@ impl<'a> CertificateBuilder<'a> {
200
200
/// # Arguments:
201
201
///
202
202
/// * extensions (Vec<X509Extension>): A Vec<X509Extension> containing the additional
203
- /// extensions to include in the certificate
203
+ /// extensions to include in the certificate
204
204
pub fn add_extensions (
205
205
& ' a mut self ,
206
206
extensions : Vec < X509Extension > ,
You can’t perform that action at this time.
0 commit comments