Skip to content

Commit ce74438

Browse files
author
dongjinlong
committed
chore: fix some comments
Signed-off-by: dongjinlong <[email protected]>
1 parent cb18fec commit ce74438

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

doc/_stdlib_gen/stdlib-content.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ local html = import 'html.libsonnet';
376376
params: ['str'],
377377
availableSince: '0.20.0',
378378
description: |||
379-
Returns true if the the given string is of zero length.
379+
Returns true if the given string is of zero length.
380380
|||,
381381
},
382382
{

doc/ref/language.html.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ By default nested objects are completely replaced when overriden. For example:
478478
```
479479
{
480480
nested_object: {
481-
field_of_the_nested_object: "will dissappear"
481+
field_of_the_nested_object: "will disappear"
482482
},
483483
not_touched: "still there",
484484
}

doc/ref/stdlib.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1070,7 +1070,7 @@ <h4 id="isEmpty">
10701070
</em>
10711071
</p>
10721072
<p>
1073-
Returns true if the the given string is of zero length.
1073+
Returns true if the given string is of zero length.
10741074
</p>
10751075

10761076
</div>

python/_jsonnet_test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
# Returns (full_path, contents) if the file was successfully retrieved,
2323
# (full_path, None) if file not found, or throws an exception when the path
24-
# is invalid or an IO error occured.
24+
# is invalid or an IO error occurred.
2525
# It caches both hits and misses in the `cache` dict. Exceptions
2626
# do not need to be cached, because they abort the computation anyway.
2727
def try_path_cached(cache, dir, rel):

0 commit comments

Comments
 (0)