File tree 1 file changed +3
-3
lines changed
packages/@aws-cdk/core/lib
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export class Duration {
62
62
/**
63
63
* Parse a period formatted according to the ISO 8601 standard
64
64
*
65
- * @see https://www.iso.org/fr/ standard/70907.html
65
+ * @see https://www.iso.org/standard/70907.html
66
66
* @param duration an ISO-formtted duration to be parsed.
67
67
* @returns the parsed `Duration`.
68
68
*/
@@ -167,7 +167,7 @@ export class Duration {
167
167
* Return an ISO 8601 representation of this period
168
168
*
169
169
* @returns a string starting with 'P' describing the period
170
- * @see https://www.iso.org/fr/ standard/70907.html
170
+ * @see https://www.iso.org/standard/70907.html
171
171
*/
172
172
public toIsoString ( ) : string {
173
173
if ( this . amount === 0 ) { return 'PT0S' ; }
@@ -190,7 +190,7 @@ export class Duration {
190
190
* Return an ISO 8601 representation of this period
191
191
*
192
192
* @returns a string starting with 'P' describing the period
193
- * @see https://www.iso.org/fr/ standard/70907.html
193
+ * @see https://www.iso.org/standard/70907.html
194
194
* @deprecated Use `toIsoString()` instead.
195
195
*/
196
196
public toISOString ( ) : string {
You can’t perform that action at this time.
0 commit comments