Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[swift/de-de] Fix typo and spelling #5098

Merged
merged 1 commit into from
Sep 8, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions de-de/swift-de.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ default: // notwendig (um alle möglichen Eingaben zu verarbeiten)

:param: name Ein Name
:param: day Ein Tag
:returns: Ein String, der Name und Tag beinhält.
:returns: Ein String, der Name und Tag enthält.
*/
func greet(name: String, day: String) -> String {
return "Hello \(name), today is \(day)."
Expand Down Expand Up @@ -585,7 +585,7 @@ prefix func !!! (inout shape: Square) -> Square {
// Aktueller Wert
print(mySquare.sideLength) // 4

// Wert nach verwendung des eigenen Operators
// Wert nach Verwendung des eigenen Operators
!!!mySquare
print(mySquare.sideLength) // 12
```
Loading