Skip to content

Commit

Permalink
doc: fix en_GB spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
slyon committed Mar 14, 2024
1 parent 0f79931 commit 2d3f904
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions doc/netplan-status.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,10 @@ Currently, **`netplan status`** depends on `systemd-networkd` as a source of dat
: Show all interface data including inactive.

`--diff`
: Analyze and display differences between the current system configuration and network definitions present in the YAML files.
The configuration analyzed includes IP addresses, routes, MAC addresses, DNS addresses, search domains and missing network interfaces.
: Analyse and display differences between the current system configuration and network definitions present in the YAML files.
The configuration analysed includes IP addresses, routes, MAC addresses, DNS addresses, search domains and missing network interfaces.

The output format is similar to popular diff tools, such `diff` and `git diff`. Configuration present only in the system (and therefore missing in the Netplan YAMLs)
The output format is similar to popular diff tools, such `diff` and `git diff`. Configuration present only in the system (and therefore missing in the Netplan YAML)
will be displayed with a `+` sign and will be highlighted in green. Configuration present only in Netplan (and therefore missing in the system) will be displayed
with a `-` sign and highlighted in red. The same is applied to network interfaces.

Expand Down
2 changes: 1 addition & 1 deletion doc/netplan-yaml.md
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ Match devices by MAC when setting options like: `wakeonlan` or `*-offload`.
> Takes a boolean. Configures whether traffic may be sent back out of the
> bridge port on which it was received. When this flag is false, then the
> bridge will not forward traffic back out of the receiving port. When
> unset, the backend's default will be used.
> unset, the backend default will be used.

- **`port-mac-learning`** (scalar) – since **1.0**

Expand Down
2 changes: 1 addition & 1 deletion netplan_cli/cli/state_diff.py
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ def _analyze_missing_interfaces(self, report: dict, interface: str) -> None:

def _analyze_parent_links(self, config: dict, iface: dict) -> None:
'''
Analyze if interfaces such as bonds, bridges and VRFs are correctly attached to their
Analyse if interfaces such as bonds, bridges and VRFs are correctly attached to their
members and vice versa.
'''
name = list(iface.keys())[0]
Expand Down

0 comments on commit 2d3f904

Please sign in to comment.