Skip to content

Commit

Permalink
Remove an extra space from example code blocks in the docs
Browse files Browse the repository at this point in the history
  • Loading branch information
bryant1410 committed Jun 20, 2023
1 parent 4b118f5 commit 1cb3a2d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/docs/tutorials/structured_config/4_defaults.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ For example, if the primary config is:
```python {6}
@dataclass
class Config:
defaults: List[Any] = field(default_factory=lambda: [
defaults: List[Any] = field(default_factory=lambda: [
"debug/activate",
# If you do not specify _self_, it will be appended to the end of the defaults list by default.
"_self_"
Expand All @@ -92,7 +92,7 @@ To get `debug/activate.yaml` to override this config, explicitly specify `_self_
```python {4}
@dataclass
class Config:
defaults: List[Any] = field(default_factory=lambda: [
defaults: List[Any] = field(default_factory=lambda: [
"_self_",
"debug/activate",
])
Expand Down

0 comments on commit 1cb3a2d

Please sign in to comment.