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

Wrong example in the readme #2

Closed
FlorianBasso opened this issue Oct 4, 2016 · 1 comment
Closed

Wrong example in the readme #2

FlorianBasso opened this issue Oct 4, 2016 · 1 comment

Comments

@FlorianBasso
Copy link

struct MyStruct { public var a: String public var b: Int public init(a: String, b: String) { self.a = a self.b = b } }

should be
struct MyStruct { public var a: String public var b: Int public init(a: String, b: Int) { self.a = a self.b = b } }

b is an Int not a String

@FlorianBasso FlorianBasso changed the title Wrong example in the realm Wrong example in the readme Oct 4, 2016
@Bouke
Copy link
Owner

Bouke commented Oct 4, 2016

Ah yes, an oversight. Thanks!

@Bouke Bouke closed this as completed Oct 4, 2016
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants